Files
warframe-center/app/pages/_app.js
anatolykopyl 0863a73625
Some checks failed
continuous-integration/drone/push Build is failing
Added a help modal
2022-07-04 02:23:09 +03:00

27 lines
575 B
JavaScript

import { CssBaseline } from '@mui/material'
import { createTheme, ThemeProvider } from '@mui/material/styles'
import { appWithTranslation } from 'next-i18next'
import 'reset-css'
import '../styles/global.scss'
import Layout from '../components/layout'
function App ({ Component, pageProps }) {
const theme = createTheme({
palette: {
mode: 'light'
}
})
return (
<ThemeProvider theme={theme}>
<CssBaseline />
<Layout>
<Component {...pageProps} />
</Layout>
</ThemeProvider>
)
}
export default appWithTranslation(App)