Adding dependencies
This commit is contained in:
parent
db76530ef4
commit
6e2b0b2360
10 changed files with 354 additions and 101 deletions
|
@ -1,6 +1,9 @@
|
|||
import '@/styles/globals.css'
|
||||
import type { AppProps } from 'next/app'
|
||||
import "@/styles/globals.css"
|
||||
import { appWithTranslation } from "next-i18next"
|
||||
import type { AppProps } from "next/app"
|
||||
|
||||
export default function App({ Component, pageProps }: AppProps) {
|
||||
return <Component {...pageProps} />
|
||||
}
|
||||
const MyApp = ({ Component, pageProps }: AppProps) => (
|
||||
<Component {...pageProps} />
|
||||
)
|
||||
|
||||
export default appWithTranslation(MyApp)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue