SpencerCDixon/redux-cli

View on GitHub
blueprints/duck/files/__root__/__duck__/__name__.js.ejs

Summary

Maintainability
Test Coverage
// Constants

// export const constants = { };

// Action Creators

// export const actions = { };

// Reducer
export const defaultState = {};

export default function(state = defaultState, action) {
  switch (action.type) {
  default:
    return state;
  }
}