aboutsummaryrefslogtreecommitdiff
path: root/src/content/reducers/index.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/content/reducers/index.ts')
-rw-r--r--src/content/reducers/index.ts4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/content/reducers/index.ts b/src/content/reducers/index.ts
index 21e8918..812a404 100644
--- a/src/content/reducers/index.ts
+++ b/src/content/reducers/index.ts
@@ -1,17 +1,15 @@
import { combineReducers } from 'redux';
-import find, { State as FindState } from './find';
import input, { State as InputState } from './input';
import followController, { State as FollowControllerState }
from './follow-controller';
import mark, { State as MarkState } from './mark';
export interface State {
- find: FindState;
input: InputState;
followController: FollowControllerState;
mark: MarkState;
}
export default combineReducers({
- find, input, followController, mark,
+ input, followController, mark,
});