Skip to content

Instantly share code, notes, and snippets.

@isaachinman
Created March 4, 2019 21:00
Show Gist options
  • Save isaachinman/17228fb58c093a75ecdd49fd7be66e82 to your computer and use it in GitHub Desktop.
Save isaachinman/17228fb58c093a75ecdd49fd7be66e82 to your computer and use it in GitHub Desktop.
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)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment