9 lines
253 B
TypeScript
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)
|