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
2022-05-01 22:50:31 +02:00

8 lines
No EOL
183 B
TypeScript

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