minecraft/pages/_app.tsx
2022-12-03 21:02:24 +01:00

15 lines
263 B
TypeScript
Executable file

import '/styles/globals.css'
import Layout from '../components/layout'
import { AppProps } from 'next/app'
function MyApp({ Component, pageProps }: AppProps) {
return (
<Layout>
<Component {...pageProps} />
</Layout>
)
}
export default MyApp