Skip to content

Instantly share code, notes, and snippets.

@manakuro
Created April 8, 2020 03:29
Show Gist options
  • Save manakuro/8e6446b80ec7992f201b98db710a4ced to your computer and use it in GitHub Desktop.
Save manakuro/8e6446b80ec7992f201b98db710a4ced to your computer and use it in GitHub Desktop.
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