client/src/reducers/authReducer.js
changeset 12 48ddaa42b810
child 44 3b20e2b584fe
equal deleted inserted replaced
11:6fb4de54acea 12:48ddaa42b810
       
     1 export const isAuthenticated = (state = false, action) => {
       
     2   switch (action.type) {
       
     3     default:
       
     4       return state;
       
     5   }
       
     6 };