summaryrefslogtreecommitdiff
path: root/frontend/src/index.js
blob: 1a7a085969ac6dfa59aeb0f02129c3e2b460b3d7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// @flow
import '@blueprintjs/core/dist/blueprint.css';
import 'babel-polyfill';
import React from 'react';
import ReactDOM from 'react-dom';
import { Provider } from 'react-redux';
import { ConnectedRouter } from 'react-router-redux';
import './global-styles.css';
import { Application } from './scenes';
import { configureStore } from './store';

const initialState = {};
const { store, history } = configureStore(initialState);

const rootElement = document.getElementById('root');
if (rootElement) {
  ReactDOM.render(<Provider store={store}>
    <ConnectedRouter history={history}>
      <Application/>
    </ConnectedRouter>
  </Provider>, rootElement);
} else {
  console.error('Element with ID "root" was not found, cannot bootstrap react app');
}
bgstack15