frontpage/pages/_app.tsx

9 lines
188 B
TypeScript
Raw Normal View History

2021-11-30 23:48:54 +01:00
import type { AppProps } from 'next/app'
2021-12-14 22:47:12 +01:00
import "../styles/globals.css"
2021-11-30 23:48:54 +01:00
function MyApp({ Component, pageProps }: AppProps) {
return <Component {...pageProps} />
}
export default MyApp