client/src/reducers/authReducer.js
author ymh <ymh.work@gmail.com>
Thu, 15 Jun 2017 12:41:44 +0200
changeset 38 04e02c64849c
parent 12 48ddaa42b810
child 44 3b20e2b584fe
permissions -rw-r--r--
add missing libraries

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