diff options
| author | Jules Laplace <julescarbon@gmail.com> | 2017-07-07 21:18:33 +0200 |
|---|---|---|
| committer | Jules Laplace <julescarbon@gmail.com> | 2017-07-07 21:18:33 +0200 |
| commit | f8b61281be84a6e4e7a44be5109e688a7c56c671 (patch) | |
| tree | 43797c6b6cfa5c0f89c020f8c89e0da10f791a55 /client/index.jsx | |
| parent | 3d3a7b80d34c100846c8ae130b424b63ba3c0784 (diff) | |
refactor files so list updates while processing
Diffstat (limited to 'client/index.jsx')
| -rw-r--r-- | client/index.jsx | 6 |
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}> |
