Created
March 4, 2019 21:00
-
-
Save isaachinman/17228fb58c093a75ecdd49fd7be66e82 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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