portfolio/pages/_app.tsx
2022-06-28 19:50:51 +02:00

8 lines
188 B
TypeScript
Executable file

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