Skip to content

Instantly share code, notes, and snippets.

@pfulop
Created August 24, 2016 07:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pfulop/b35a92a37dc9002c9230797527543595 to your computer and use it in GitHub Desktop.
Save pfulop/b35a92a37dc9002c9230797527543595 to your computer and use it in GitHub Desktop.
const initialState = {
};
export default (state = initialState, action) => {
switch (action.type) {
default:
return state;
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment