15 lines
237 B
TypeScript
15 lines
237 B
TypeScript
import React from 'react'
|
|
import '../styles/globals.css'
|
|
|
|
import { AppProps } from 'next/app'
|
|
|
|
function MyApp({ Component, pageProps }: AppProps) {
|
|
return (
|
|
<>
|
|
<Component {...pageProps} />
|
|
</>
|
|
)
|
|
}
|
|
|
|
export default MyApp
|