client/src/reducers/authReducer.js
author Alexandre Segura <mex.zktk@gmail.com>
Wed, 14 Jun 2017 15:29:01 +0200
changeset 32 52f7a51ef948
parent 12 48ddaa42b810
child 44 3b20e2b584fe
permissions -rw-r--r--
Fix typos.

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