import App, { Container } from 'next/app' import { I18n as I18nR } from 'react-i18next' import i18n from '../i18n' export default class MyApp extends App { render () { const { Component, pageProps } = this.props return ( { (t) => (

{t('common:integrates_react-i18next')}

) }
) } }