Created
March 4, 2019 21:34
-
-
Save isaachinman/3bf5466070de08e720b0716bbea3d4f2 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 { i18n, withNamespaces } from '../i18n' | |
class Homepage extends React.Component { | |
static async getInitialProps() { | |
return { | |
namespacesRequired: ['common'], | |
} | |
} | |
render() { | |
return ( | |
<> | |
<div>{this.props.t('title')}</div> | |
<button | |
onClick={() => i18n.changeLanguage(i18n.language === 'en' ? 'de' : 'en')} | |
> | |
Change locale | |
</button> | |
</> | |
) | |
} | |
} | |
export default withNamespaces('common')(Homepage) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment