Skip to content

Instantly share code, notes, and snippets.

@gustavolendimuth
Created July 22, 2022 22:44
Show Gist options
  • Save gustavolendimuth/ae646192d3c3e18243c6990c4540b5bf to your computer and use it in GitHub Desktop.
Save gustavolendimuth/ae646192d3c3e18243c6990c4540b5bf to your computer and use it in GitHub Desktop.
const INITIAL_STATE = {
state: '',
};
function myReducer(state = INITIAL_STATE, action) {
switch (action.type) {
case 'NEW_ACTION':
return { state: action.state };
default:
return state;
}
}
export default myReducer;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment