19 lines
365 B
TypeScript
19 lines
365 B
TypeScript
import { AppProps } from 'next/app';
|
|
import Head from 'next/head';
|
|
import './styles.css';
|
|
|
|
function CustomApp({ Component, pageProps }: AppProps) {
|
|
return (
|
|
<>
|
|
<Head>
|
|
<title>Welcome to simple-example!</title>
|
|
</Head>
|
|
<main className="app">
|
|
<Component {...pageProps} />
|
|
</main>
|
|
</>
|
|
);
|
|
}
|
|
|
|
export default CustomApp;
|