client/src/reducers/authReducer.js
author ymh <ymh.work@gmail.com>
Thu, 15 Jun 2017 15:27:36 +0200
changeset 40 7f940dbb60a6
parent 12 48ddaa42b810
child 44 3b20e2b584fe
permissions -rw-r--r--
Use yields instead of promises

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