import React from 'react';
import ReactDOM from 'react-dom';
import { Router, Route, RoutingContext, match } from 'react-router';
import { Provider } from 'react-redux';

import store from './store';
import routes from './routes';
import history from './history';
import './services';

import './assets/styles/index.styl';

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