aboutsummaryrefslogtreecommitdiff
path: root/src/client/react/reducers.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/client/react/reducers.js')
-rw-r--r--src/client/react/reducers.js8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/client/react/reducers.js b/src/client/react/reducers.js
new file mode 100644
index 0000000..1afcec5
--- /dev/null
+++ b/src/client/react/reducers.js
@@ -0,0 +1,8 @@
+const reducer = (state = [], action) => {
+ switch (action.type) {
+ default:
+ return state;
+ }
+};
+
+export default reducer;