LinkList/frontend/pages/_app.tsx

16 lines
330 B
TypeScript
Raw Permalink Normal View History

2021-03-03 18:51:53 -05:00
import type { AppProps } from "next/app";
import React from "react";
import "styles/globals.css";
2021-03-22 15:35:13 -04:00
import Head from "next/head";
2021-03-03 18:51:53 -05:00
const MyApp: React.FC<AppProps> = ({ Component, pageProps }) => (
2021-03-22 15:35:13 -04:00
<>
<Head>
<title>@uwcsclub | LinkList</title>
</Head>
<Component {...pageProps} />
</>
2021-03-03 18:51:53 -05:00
);
export default MyApp;