minecraft/pages/_app.tsx

15 lines
263 B
TypeScript
Raw Permalink Normal View History

2022-12-03 20:02:24 +00:00
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