mirror of
https://github.com/Steffo99/distributed-arcade-viewer.git
synced 2024-11-22 07:54:24 +00:00
16 lines
364 B
TypeScript
16 lines
364 B
TypeScript
// @ts-nocheck
|
|
|
|
import type {AppProps} from "next/app"
|
|
import "../styles/globals.css"
|
|
import Head from "next/head"
|
|
|
|
|
|
export default function App({Component, pageProps}: AppProps) {
|
|
return <>
|
|
<Head>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
|
<link rel="icon" href="/favicon.ico"/>
|
|
</Head>
|
|
<Component {...pageProps} />
|
|
</>
|
|
}
|