Files
next-i18next/example/pages/_app.js
Isaac Hinman 5913957ec0 Add example
2018-11-19 14:11:26 -08:00

17 lines
343 B
JavaScript

import React from 'react'
import App, { Container } from 'next/app'
import { appWithTranslation } from '../i18n'
class MyApp extends App {
render () {
const { Component, pageProps } = this.props
return (
<Container>
<Component {...pageProps} />
</Container>
)
}
}
export default appWithTranslation(MyApp)