client/src/reducers/authReducer.js
author ymh <ymh.work@gmail.com>
Wed, 14 Jun 2017 15:17:51 +0200
changeset 31 63be3ce389f7
parent 12 48ddaa42b810
child 44 3b20e2b584fe
permissions -rw-r--r--
improve api

export const isAuthenticated = (state = false, action) => {
  switch (action.type) {
    default:
      return state;
  }
};