Skip to content

Instantly share code, notes, and snippets.

@inv2004
Created October 15, 2017 06:59
Show Gist options
  • Save inv2004/8ede7acbb580647f85ee4ba39338ede5 to your computer and use it in GitHub Desktop.
Save inv2004/8ede7acbb580647f85ee4ba39338ede5 to your computer and use it in GitHub Desktop.
function reducer(state = {books: []}, action) {
switch (action.type) {
case "SET_RECOMMENDED":
return {books: action.payload};
default:
state;
}
}
function mapStateToPros(state) {
console.log("state: "+state);
return {books: state.books};
}
const store = createStore(reducer, {books: []});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment