client/src/reducers/authReducer.js
author duong tam kien <tk@deveha.com>
Wed, 07 Jun 2017 18:18:44 +0200
changeset 20 a8300ef1876e
parent 12 48ddaa42b810
child 44 3b20e2b584fe
permissions -rw-r--r--
start of sidebar and navbar

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