summaryrefslogtreecommitdiff
path: root/frontend/src/index.js
blob: 5fd52c011ecc83e65f3e1d8ad4e2a7e88fed13a5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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