// @flow import 'babel-polyfill'; import React from 'react'; import ReactDOM from 'react-dom'; import { Provider } from 'react-redux'; import { Router } from 'react-router'; import './global-styles.css'; import { routes } from './routes'; import configureStore from './store'; const initialState = {}; const { store, history } = configureStore(initialState); ReactDOM.render( , document.getElementById('root') );