next-app-boilerplate/pages/_app.tsx

10 lines
203 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
2022-03-24 01:44:55 +01:00
const MyApp = ({ Component, pageProps }: AppProps): JSX.Element => {
return <Component {...pageProps} />
}
2022-02-12 23:07:11 +01:00
export default MyApp