2022-01-22 17:55:03 +01:00
|
|
|
import 'shared/styles/globals.css'
|
2022-02-06 19:16:49 +01:00
|
|
|
import { appWithTranslation } from 'next-i18next'
|
2023-05-17 17:04:15 +02:00
|
|
|
import { ContextWrapper } from 'shared/components/wrappers/context.mjs'
|
2022-01-22 17:55:03 +01:00
|
|
|
|
2023-05-17 17:04:15 +02:00
|
|
|
const FreeSewingLab = ({ Component, pageProps }) => (
|
2023-09-11 19:59:02 +02:00
|
|
|
<ContextWrapper>
|
|
|
|
<Component {...pageProps} />
|
|
|
|
</ContextWrapper>
|
2023-05-17 17:04:15 +02:00
|
|
|
)
|
2022-01-22 17:55:03 +01:00
|
|
|
|
2022-02-06 19:16:49 +01:00
|
|
|
export default appWithTranslation(FreeSewingLab)
|