summaryrefslogtreecommitdiff
path: root/client/index.jsx
diff options
context:
space:
mode:
Diffstat (limited to 'client/index.jsx')
-rw-r--r--client/index.jsx6
1 files changed, 2 insertions, 4 deletions
diff --git a/client/index.jsx b/client/index.jsx
index 639117d..b0815f4 100644
--- a/client/index.jsx
+++ b/client/index.jsx
@@ -1,10 +1,8 @@
import { h, render } from 'preact'
-import { createStore } from 'redux'
import { Provider } from 'react-redux'
import App from './components/App.jsx'
-import reducer from './reducers/index.js'
-
-const store = createStore(reducer)
+import store from './store'
+import socket from './socket'
const app = (
<Provider store={store}>