Matchu
26d7f4220a
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?
15 lines
357 B
TypeScript
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} />
|
|
</>
|
|
);
|
|
}
|