2021-07-23 16:14:54 +00:00
|
|
|
import '../styles/globals.css'
|
|
|
|
import type { AppProps } from 'next/app'
|
2021-07-23 18:35:41 +00:00
|
|
|
import {NextIntlProvider} from 'next-intl';
|
2021-07-23 16:14:54 +00:00
|
|
|
|
2021-07-23 18:35:41 +00:00
|
|
|
function _App({ Component, pageProps }: AppProps) {
|
|
|
|
return <NextIntlProvider messages={pageProps.messages}>
|
|
|
|
<Component {...pageProps} />
|
|
|
|
</NextIntlProvider>
|
2021-07-23 16:14:54 +00:00
|
|
|
}
|
2021-07-23 18:35:41 +00:00
|
|
|
export default _App
|