2021-12-08 03:38:31 +00:00
|
|
|
import type { AppProps } from 'next/app'
|
2021-12-08 07:53:04 +00:00
|
|
|
import 'normalize.css';
|
2021-12-08 03:38:31 +00:00
|
|
|
import '../styles/global.css';
|
|
|
|
|
2022-04-27 08:03:21 +00:00
|
|
|
export default function App({ Component, pageProps }: AppProps) {
|
2022-04-24 04:27:51 +00:00
|
|
|
return <Component {...pageProps} />
|
2021-12-08 03:38:31 +00:00
|
|
|
}
|