Skip to content

Instantly share code, notes, and snippets.

@isaachinman
Created March 4, 2019 21:34
Show Gist options
  • Save isaachinman/3bf5466070de08e720b0716bbea3d4f2 to your computer and use it in GitHub Desktop.
Save isaachinman/3bf5466070de08e720b0716bbea3d4f2 to your computer and use it in GitHub Desktop.
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