mirror of
https://github.com/skidoodle/albert.lol.git
synced 2026-04-29 03:37:41 +02:00
9 lines
189 B
TypeScript
9 lines
189 B
TypeScript
import type { AppProps } from 'next/app'
|
|
import 'styles/globals.scss'
|
|
|
|
const MyApp = ({ Component, pageProps }: AppProps) => {
|
|
return <Component {...pageProps} />
|
|
}
|
|
|
|
export default MyApp
|