2022-03-17 01:11:10 +01:00
|
|
|
import type { AppProps } from 'next/app'
|
2022-02-12 23:07:11 +01:00
|
|
|
|
2022-03-17 01:11:10 +01:00
|
|
|
import '../styles/main.scss'
|
2022-02-12 23:07:11 +01:00
|
|
|
|
|
|
|
const MyApp = ({ Component, pageProps }: AppProps) => {
|
2022-03-17 01:11:10 +01:00
|
|
|
return <Component {...pageProps} />
|
|
|
|
}
|
2022-02-12 23:07:11 +01:00
|
|
|
|
2022-03-17 01:11:10 +01:00
|
|
|
export default MyApp
|