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