fastbin/pages/_app.tsx
2022-02-21 14:04:07 +05:30

8 lines
188 B
TypeScript

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