pronounsfu/frontend/pages/_app.tsx

23 lines
540 B
TypeScript
Raw Normal View History

import "../styles/globals.css";
import type { AppProps } from "next/app";
import Container from "../components/Container";
import Navigation from "../components/Navigation";
import { RecoilRoot } from "recoil";
2022-08-16 18:04:06 -07:00
import Head from "next/head";
function MyApp({ Component, pageProps }: AppProps) {
return (
<RecoilRoot>
2022-08-16 18:04:06 -07:00
<Head>
<title key="title">pronouns.cc</title>
</Head>
<Navigation />
<Container>
<Component {...pageProps} />
</Container>
</RecoilRoot>
);
}
export default MyApp;