aboutsummaryrefslogtreecommitdiff
path: root/src/client/react/reducers.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/client/react/reducers.ts')
-rw-r--r--src/client/react/reducers.ts12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/client/react/reducers.ts b/src/client/react/reducers.ts
new file mode 100644
index 0000000..254fe76
--- /dev/null
+++ b/src/client/react/reducers.ts
@@ -0,0 +1,12 @@
+import { combineReducers } from 'redux';
+import search, { State as SearchState } from './reducers/search';
+
+export interface State {
+ search: SearchState,
+}
+
+const rootReducer = combineReducers<State>({
+ search,
+});
+
+export default rootReducer;