Skip to content

Instantly share code, notes, and snippets.

@rxluz
Created December 13, 2017 21:08
Show Gist options
  • Save rxluz/a0705f511194cb93c862e341f6f8386e to your computer and use it in GitHub Desktop.
Save rxluz/a0705f511194cb93c862e341f6f8386e to your computer and use it in GitHub Desktop.
Wrapping your application with Redux i18n
///.... your other imports
import I18n from 'redux-i18n';
import { translations } from '__src__/config/locales/index';
ReactDOM.render(
<Provider store={store}>
<I18n translations={translations} initialLang="en" fallbackLang="en">
<App />
</I18n>
</Provider>,
document.getElementById('app')
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment