chore: remove react-redux-router

This commit is contained in:
Katie Thornhill 2019-11-20 00:21:47 -05:00
parent 77f81dc8b6
commit 86c31126e8
No known key found for this signature in database
GPG key ID: F76EDC6541A99644
6 changed files with 6 additions and 16 deletions

View file

@ -2,7 +2,6 @@ import React, { Component } from 'react'
import { Provider } from 'react-redux'
import { DragDropContext } from 'react-dnd'
import HTML5Backend from 'react-dnd-html5-backend'
import createHistory from 'history/createBrowserHistory'
import configureStore from './store/configureStore'
import './App.css'
import './generic.sass'
@ -10,8 +9,8 @@ import { Router } from 'react-router-dom'
import Wrapper from './components/wrapper'
import AppRouter from './router'
import { userInit } from './actions'
import { history } from './router/history'
const history = createHistory()
const store = configureStore(undefined, history)
window.__APP_STORE__ = store