Skip to content

Instantly share code, notes, and snippets.

@ahamedali95
Last active May 4, 2020 01:47
Show Gist options
  • Save ahamedali95/298764d2c265ab2479b6424226463b5c to your computer and use it in GitHub Desktop.
Save ahamedali95/298764d2c265ab2479b6424226463b5c to your computer and use it in GitHub Desktop.
const book = (() => {
return {
books: []
};
})();
const bookReducer = (state=book, action) => {
console.log(state); //=> { books: [] }
//logic here
};
export default bookReducer;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment