client/src/reducers/authReducer.js
author Alexandre Segura <mex.zktk@gmail.com>
Thu, 01 Jun 2017 16:15:08 +0200
changeset 15 4a8bbd314a46
parent 12 48ddaa42b810
child 44 3b20e2b584fe
permissions -rw-r--r--
Store note JSON data.

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