Update _app.tsx

Signed-off-by: skidoodle <contact@albert.lol>
This commit is contained in:
2023-02-14 08:46:09 +01:00
committed by GitHub
parent e5089cb75a
commit e20e9b37b3

View File

@@ -1,8 +1,8 @@
import { AppProps } from 'next/app';
import { Analytics } from '@vercel/analytics/react';
import 'styles/globals.scss';
import Head from 'next/head';
import { AppProps } from 'next/app';
export default function App({ Component, pageProps }: AppProps) {
return (
<>
@@ -10,6 +10,7 @@ export default function App({ Component, pageProps }: AppProps) {
<title>albert</title>
</Head>
<Component {...pageProps} />
<Analytics />
</>
);
}