Skip to content

Commit

Permalink
feat: add global styled to app
Browse files Browse the repository at this point in the history
  • Loading branch information
cesarhenrq committed Sep 25, 2023
1 parent c74e176 commit f7b797b
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion src/App.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
import GlobalStyle from '@styles/global';

export default function App() {
return <div className="App">it works!</div>;
return (
<div className="App">
<GlobalStyle />
it works!
</div>
);
}

0 comments on commit f7b797b

Please sign in to comment.