diff -r 6fb4de54acea -r 48ddaa42b810 client/src/reducers/authReducer.js --- /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; + } +};