summaryrefslogtreecommitdiff
path: root/client/index.js
diff options
context:
space:
mode:
Diffstat (limited to 'client/index.js')
-rw-r--r--client/index.js7
1 files changed, 6 insertions, 1 deletions
diff --git a/client/index.js b/client/index.js
index 1a71e55..b9d3a1a 100644
--- a/client/index.js
+++ b/client/index.js
@@ -1,8 +1,13 @@
import React from 'react'
import ReactDOM from 'react-dom'
+import { Provider } from 'react-redux'
import App from './app'
+import { store, history } from './store'
+
ReactDOM.render(
- <App />, document.querySelector('#container')
+ <Provider store={store}>
+ <App history={history} />
+ </Provider>, document.querySelector('#container')
)