import React from "react" import { render } from "react-dom" import { Provider } from "react-redux" import { ReduxIntl } from "redux-react-intl" import { setLocale } from "./intlActions" import configureStore from "./configureStore" const store = configureStore() store.dispatch((dispatch) => { dispatch(setLocale("fr")) }) const app = ( {/* Your app, or router */} ) render(app, document.getElementById("root"))