Created
July 21, 2021 00:04
-
-
Save Brlaney/ff03267e695ae45a171ac974941aa2c9 to your computer and use it in GitHub Desktop.
My _app.tsx file for using Material-UI with Next.js
This file contains 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 * as React from 'react' | |
import type { AppProps } from 'next/app' | |
import Head from 'next/head' | |
import { useRouter } from 'next/router' | |
import { ThemeProvider } from '@material-ui/core/styles' | |
import { CacheProvider } from '@emotion/react' | |
import CssBaseline from '@material-ui/core/CssBaseline' | |
import createCache from '@emotion/cache' | |
import theme from '@/lib/mui-theme/theme' | |
import '@/styles/globals.scss' | |
export const cache = createCache({ key: 'css', prepend: true }) | |
const title = 'Next | TS | Mui' | |
const keywords = 'Next.js, next, Typescript, Material-UI, Sass, Scss, web app' | |
const description = 'This web application uses Next.js, Typescript, and Material-UI' | |
export default function MyApp(props: AppProps) { | |
const { Component, pageProps } = props | |
const router = useRouter() | |
return ( | |
<CacheProvider value={cache}> | |
<Head> | |
<meta charSet='utf-8' /> | |
<title>{title}</title> | |
<link rel='icon' href='/favicon.png' /> | |
<meta name='viewport' content='initial-scale=1 width=device-width' /> | |
<meta name='keywords' content={keywords} /> | |
<meta name='description' content={description} /> | |
</Head> | |
<ThemeProvider theme={theme}> | |
<CssBaseline /> | |
<Component {...pageProps} key={router.route} /> | |
</ThemeProvider> | |
</CacheProvider> | |
) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment