2023-09-29 08:05:40 +02:00
|
|
|
import 'shared/styles/globals.css'
|
|
|
|
import { appWithTranslation } from 'next-i18next'
|
|
|
|
import { ContextWrapper } from 'shared/components/wrappers/context.mjs'
|
|
|
|
|
2023-09-29 16:01:27 +02:00
|
|
|
const FreeSewingSde = ({ Component, pageProps }) => (
|
2023-09-29 08:05:40 +02:00
|
|
|
<ContextWrapper>
|
|
|
|
<Component {...pageProps} />
|
|
|
|
</ContextWrapper>
|
|
|
|
)
|
|
|
|
|
2023-09-29 16:01:27 +02:00
|
|
|
export default appWithTranslation(FreeSewingSde)
|