jg-eucs/src/pages/_app.tsx
2023-04-16 15:49:32 +02:00

9 lines
253 B
TypeScript

import "@/styles/globals.css"
import { appWithTranslation } from "next-i18next"
import type { AppProps } from "next/app"
const MyApp = ({ Component, pageProps }: AppProps) => (
<Component {...pageProps} />
)
export default appWithTranslation(MyApp)