client/src/reducers/authReducer.js
author ymh <ymh.work@gmail.com>
Thu, 15 Jun 2017 13:00:32 +0200
changeset 39 cb014270bdc6
parent 12 48ddaa42b810
child 44 3b20e2b584fe
permissions -rw-r--r--
add CORS headers

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