client/src/reducers/authReducer.js
changeset 12 48ddaa42b810
child 44 3b20e2b584fe
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/client/src/reducers/authReducer.js	Wed May 31 17:51:54 2017 +0200
@@ -0,0 +1,6 @@
+export const isAuthenticated = (state = false, action) => {
+  switch (action.type) {
+    default:
+      return state;
+  }
+};