impress-2020/pages/_app.tsx
Matchu 26d7f4220a Fix TypeScript errors in pages dir
Idk why Next made me these files in a way that created React errors but ok! Maybe it was because we didn't have `pages` in the `includes`, so my editor was using the default tsconfig instead of this one?
2022-09-14 18:04:10 -07:00

15 lines
357 B
TypeScript

import Head from "next/head";
import type { AppProps } from "next/app";
export default function DTIApp({ Component, pageProps }: AppProps) {
return (
<>
<Head>
<title>Dress to Impress</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
</Head>
<Component {...pageProps} />
</>
);
}