www/pages/_app.tsx
2022-04-27 04:03:21 -04:00

7 lines
204 B
TypeScript

import type { AppProps } from 'next/app'
import 'normalize.css';
import '../styles/global.css';
export default function App({ Component, pageProps }: AppProps) {
return <Component {...pageProps} />
}