1
0
Fork 0
mirror of https://github.com/skidoodle/albert.lol.git synced 2025-02-15 06:09:15 +01:00
albert.lol/pages/_app.tsx
skidoodle 29312048df 🔥
2022-04-02 23:50:59 +02:00

8 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