2021-06-03 16:13:23 +00:00
|
|
|
import { AppProps } from 'next/app'
|
|
|
|
import { globalStyles } from 'styles'
|
|
|
|
import 'styles/globals.css'
|
2021-05-09 12:03:39 +00:00
|
|
|
|
|
|
|
function MyApp({ Component, pageProps }: AppProps) {
|
|
|
|
globalStyles()
|
2021-06-11 12:37:09 +00:00
|
|
|
return (
|
|
|
|
<>
|
|
|
|
<head>
|
|
|
|
<meta
|
|
|
|
name="viewport"
|
|
|
|
content="minimum-scale=1, initial-scale=1, width=device-width, shrink-to-fit=no, user-scalable=no, viewport-fit=cover"
|
|
|
|
/>
|
|
|
|
</head>
|
|
|
|
<Component {...pageProps} />
|
|
|
|
</>
|
|
|
|
)
|
2021-05-09 12:03:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
export default MyApp
|