11 lines
336 B
JavaScript
11 lines
336 B
JavaScript
import 'shared/styles/globals.css'
|
|
import { appWithTranslation } from 'next-i18next'
|
|
import { ContextWrapper } from 'shared/components/wrappers/context.mjs'
|
|
|
|
const FreeSewingLab = ({ Component, pageProps }) => (
|
|
<ContextWrapper>
|
|
<Component {...pageProps} />
|
|
</ContextWrapper>
|
|
)
|
|
|
|
export default appWithTranslation(FreeSewingLab)
|