next-app-boilerplate/pages/_app.tsx

10 lines
190 B
TypeScript
Raw Normal View History

import type { AppProps } from 'next/app'
2022-02-12 23:07:11 +01:00
import '../styles/main.scss'
2022-02-12 23:07:11 +01:00
const MyApp = ({ Component, pageProps }: AppProps) => {
return <Component {...pageProps} />
}
2022-02-12 23:07:11 +01:00
export default MyApp