Created
April 8, 2020 03:29
-
-
Save manakuro/8e6446b80ec7992f201b98db710a4ced to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React from 'react' | |
import { ThemeProvider } from 'theme-ui' | |
import theme from 'src/styles/theme' | |
import Home from 'src/components/Home' | |
import Global from 'src/styles/global' | |
const App: React.FC = (props) => { | |
return ( | |
<ThemeProvider theme={theme}> | |
<> | |
<Global /> | |
<Home {...props} /> | |
</> | |
</ThemeProvider> | |
) | |
} | |
export default App |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment