aboutsummaryrefslogtreecommitdiff
path: root/src/content/index.js
diff options
context:
space:
mode:
authorShin'ya Ueoka <ueokande@i-beam.org>2017-10-04 22:01:16 +0900
committerShin'ya Ueoka <ueokande@i-beam.org>2017-10-04 22:01:16 +0900
commit79a4a805f6be14572b4486ddb79b0ebb98e37690 (patch)
tree839dea5d9ed0654693c307c72dc3c75ebbe12a86 /src/content/index.js
parent6594841b1d1f082107bdb1489f02d3c99cff8ffa (diff)
single reducer
Diffstat (limited to 'src/content/index.js')
-rw-r--r--src/content/index.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/content/index.js b/src/content/index.js
index ea08982..38ad837 100644
--- a/src/content/index.js
+++ b/src/content/index.js
@@ -6,11 +6,11 @@ import * as followActions from '../actions/follow';
import { createStore } from '../store';
import ContentInputComponent from '../components/content-input';
import FollowComponent from '../components/follow';
-import followReducer from '../reducers/follow';
+import reducers from '../reducers';
import operations from '../operations';
import messages from './messages';
-const store = createStore(followReducer);
+const store = createStore(reducers);
const followComponent = new FollowComponent(window.document.body, store);
store.subscribe(() => {
try {