Last commit before background change

This commit is contained in:
2018-03-21 19:41:11 +11:00
parent 5aa8bfde9f
commit 676207dfad
15 changed files with 1417 additions and 35 deletions

View File

@@ -6,6 +6,7 @@ import React from 'react';
import ReactDOM, { render } from 'react-dom';
import { createStore, applyMiddleware } from 'redux';
import { Provider } from 'react-redux';
import { HashRouter, Route, Switch } from 'react-router-dom';
import App from './App.jsx';
import Styles from './styles/index.scss';
@@ -23,6 +24,8 @@ const unsubscribe = store.subscribe(() => {
//Render app and supply provider for store.
render((
<Provider store={store}>
<App />
<HashRouter>
<App />
</HashRouter>
</Provider>
), document.getElementById("app"));