Skip to content

Instantly share code, notes, and snippets.

@narennaik
Created May 27, 2021 07:31
Show Gist options
  • Save narennaik/32fc0d98e024d1ca2614b8f9251ae537 to your computer and use it in GitHub Desktop.
Save narennaik/32fc0d98e024d1ca2614b8f9251ae537 to your computer and use it in GitHub Desktop.
TODO reducer
const todo = (state, action) => {
if (!state) {
return [];
} else if (action.type === "ADD_TODO") {
return [...state, action.payload];
} else {
return state;
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment