albert.lol/pages/_app.tsx
skidoodle 3c18df552d 🔥
2022-04-24 17:41:31 +02:00

12 lines
No EOL
257 B
TypeScript

import { AppProps } from 'next/app'
import Head from 'next/head'
import 'styles/globals.scss'
const MyApp = ({ Component, pageProps }: AppProps) => {
<Head>
<title>albert</title>
</Head>
return <Component {...pageProps} />
}
export default MyApp