matt HOFFNER
barebones next
0e0987b
raw
history blame
380 Bytes
import Head from "next/head";
import { AppProps } from "next/app";
export interface MyAppProps extends AppProps {
emotionCache?: any;
}
export default function MyApp(props: MyAppProps) {
const { Component } = props;
return (
<>
<Head>
<meta name="viewport" content="initial-scale=1, width=device-width" />
</Head>
<Component />
</>
);
}