summaryrefslogtreecommitdiff
path: root/frontend/src/index.js
blob: a3fbe7ce98379c9656579ac35c25ed20ac6a9655 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// @flow
import 'babel-polyfill';
import './global-styles.css';

import React from 'react';
import ReactDOM from 'react-dom';
import { Router } from 'react-router';
import { Provider } from 'react-redux';

import configureStore from './store';
import { routes } from './routes';
const initialState = {};
const { store, history } = configureStore(initialState);

ReactDOM.render(
  <Provider store={store}>
    <Router history={history} routes={routes} />
  </Provider>,
  document.getElementById('root')
);
bgstack15