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