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