10 lines
222 B
TypeScript
10 lines
222 B
TypeScript
import '../styles/globals.css'
|
|
import type { AppProps } from 'next/app'
|
|
import { FC } from 'react'
|
|
|
|
const MyApp: FC<AppProps> = ({ Component, pageProps }) => {
|
|
return <Component {...pageProps} />
|
|
}
|
|
|
|
export default MyApp
|