Spaces:
Runtime error
Runtime error
File size: 403 Bytes
0e0987b 36355a5 0e0987b |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
import Head from "next/head";
import { AppProps } from "next/app";
import '../styles.css'
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 />
</>
);
} |