17 lines
443 B
JavaScript
17 lines
443 B
JavaScript
|
import "../styles/global.css";
|
||
|
import Head from "next/head";
|
||
|
|
||
|
// This default export is required in a new `pages/_app.js` file.
|
||
|
export default function MyApp({ Component, pageProps }) {
|
||
|
return (
|
||
|
<>
|
||
|
<Head>
|
||
|
<link rel="icon" href="/favicon.svg" />
|
||
|
<meta charSet="utf-8" />
|
||
|
<meta name="viewport" content="initial-scale=1.0, width=device-width" />
|
||
|
</Head>
|
||
|
<Component {...pageProps} />
|
||
|
</>
|
||
|
);
|
||
|
}
|