mirror of
https://github.com/skidoodle/albert.lol.git
synced 2025-02-15 06:09:15 +01:00
12 lines
No EOL
257 B
TypeScript
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 |