Created
September 18, 2018 00:19
-
-
Save lizzymendivil/8fd9673a1f86245877e129486ba7bc83 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 * as React from 'react'; | |
import * as ReactDOM from 'react-dom'; | |
import { addLocaleData, IntlProvider } from 'react-intl'; | |
import * as locale_en from 'react-intl/locale-data/en'; | |
import * as locale_es from 'react-intl/locale-data/es'; | |
const en = require('./i18n/locales/en.json'); | |
const es = require('./i18n/locales/es.json'); | |
import { flattenMessages } from './utils'; | |
import { Provider } from 'react-redux'; | |
import { createStore } from 'redux'; | |
import App from './components/App/App'; | |
import { rootReducers } from './reducers'; | |
import './index.css'; | |
/** | |
* Creates redux store from combining reducers | |
*/ | |
const store = createStore(rootReducers); | |
addLocaleData([...locale_en , ...locale_es]); | |
const locale = navigator.language.split(/[-_]/)[0]; | |
const messages = { | |
'en': en, | |
'es': es | |
}; | |
ReactDOM.render( | |
<IntlProvider locale={locale} | |
key={locale} | |
messages={flattenMessages(messages[locale])}> | |
<Provider store={store}> | |
<App /> | |
</Provider> | |
</IntlProvider>, | |
document.getElementById('root') as HTMLElement | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment