mirror of
https://github.com/skidoodle/albert.lol.git
synced 2026-04-28 03:07:40 +02:00
9 lines
186 B
TypeScript
9 lines
186 B
TypeScript
import 'styles/globals.scss'
|
|
|
|
import { AppProps } from 'next/app'
|
|
|
|
export default function({ Component, pageProps }: AppProps) {
|
|
return (
|
|
<Component {...pageProps} />
|
|
)
|
|
} |