From 79a4a805f6be14572b4486ddb79b0ebb98e37690 Mon Sep 17 00:00:00 2001 From: Shin'ya Ueoka Date: Wed, 4 Oct 2017 22:01:16 +0900 Subject: single reducer --- src/content/index.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/content') 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 { -- cgit v1.2.3