www/pages/_app.tsx

7 lines
204 B
TypeScript
Raw Normal View History

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) {
return <Component {...pageProps} />
2021-12-08 03:38:31 +00:00
}