Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
// basic usage
import { ThemeProvider } from 'theme-ui'
import theme from '../theme'
function MyApp({ Component, pageProps }) {
return (
<ThemeProvider theme={theme}>
<Component {...pageProps} />
</ThemeProvider>
)
}
export default MyApp