client/src/reducers/authReducer.js
author duong tam kien <tk@deveha.com>
Thu, 15 Jun 2017 16:51:24 +0200
changeset 41 aec51a27ca54
parent 12 48ddaa42b810
child 44 3b20e2b584fe
permissions -rw-r--r--
bootstrap of list of sessions

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