client/src/reducers/authReducer.js
author duong tam kien <tk@deveha.com>
Mon, 12 Jun 2017 11:39:47 +0200
changeset 27 6161392ca928
parent 12 48ddaa42b810
child 44 3b20e2b584fe
permissions -rw-r--r--
titre et description et date

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