client/src/reducers/authReducer.js
author Alexandre Segura <mex.zktk@gmail.com>
Wed, 14 Jun 2017 16:08:31 +0200
changeset 34 6c920486de81
parent 12 48ddaa42b810
child 44 3b20e2b584fe
permissions -rw-r--r--
Prevent form submit.

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