client/src/reducers/authReducer.js
author ymh <ymh.work@gmail.com>
Wed, 14 Jun 2017 18:08:03 +0200
changeset 36 36210c4f019f
parent 12 48ddaa42b810
child 44 3b20e2b584fe
permissions -rw-r--r--
reorganize urls and add user management api urls

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