mirror of
https://github.com/koreanbots/core.git
synced 2025-12-16 06:20:24 +00:00
16 lines
380 B
TypeScript
16 lines
380 B
TypeScript
|
|
import Head from 'next/head'
|
|
import type { AppProps /*, AppContext */ } from 'next/app'
|
|
|
|
const App = ({ Component, pageProps }: AppProps): JSX.Element => {
|
|
return (
|
|
<>
|
|
<Head>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>Next.js TypeScript Quickstart</title>
|
|
</Head>
|
|
<Component {...pageProps} />
|
|
</>
|
|
)
|
|
}
|
|
export default App |