Skip to content

Instantly share code, notes, and snippets.

@JoaoCnh
Created February 5, 2018 15:45
Show Gist options
  • Save JoaoCnh/82fe20a98f65c73d604fd9da2e695954 to your computer and use it in GitHub Desktop.
Save JoaoCnh/82fe20a98f65c73d604fd9da2e695954 to your computer and use it in GitHub Desktop.
HOC usage
@withI18n
class MyComponent extends Component {
render() {
return <div>{this.props.locale}</div>
}
}
// or -- depending on your decorator usage
class MyComponent extends Component {
render() {
return <div>{this.props.locale}</div>
}
}
export default withI18n(MyComponent);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment