hensei-web/pages/_app.tsx

16 lines
340 B
TypeScript

import { appWithTranslation } from "next-i18next"
import type { AppProps } from "next/app"
import Layout from "~components/Layout"
import "../styles/globals.scss"
function MyApp({ Component, pageProps }: AppProps) {
return (
<Layout>
<Component {...pageProps} />
</Layout>
)
}
export default appWithTranslation(MyApp)