Showing
1 changed file
with
9 additions
and
5 deletions
1 | import React from "react"; | 1 | import React from "react"; |
2 | +import GlobalStyles from "../Styles/GlobalStyles"; | ||
2 | 3 | ||
3 | -function App() { | 4 | +export default () => { |
4 | - return <div className="App"></div>; | 5 | + return ( |
5 | -} | 6 | + <> |
6 | - | 7 | + <GlobalStyles /> |
7 | -export default App; | 8 | + <div id="App"></div> |
9 | + </> | ||
10 | + ); | ||
11 | +}; | ... | ... |
-
Please register or login to post a comment