import Head from 'next/head' import type { AppProps /*, AppContext */ } from 'next/app' const App = ({ Component, pageProps }: AppProps): JSX.Element => { return ( <> Next.js TypeScript Quickstart ) } export default App