Skip to content

Instantly share code, notes, and snippets.

@archi14
Created February 11, 2022 08:44
Show Gist options
  • Save archi14/269b771f6dda4d360f3a7a2b3cfd1687 to your computer and use it in GitHub Desktop.
Save archi14/269b771f6dda4d360f3a7a2b3cfd1687 to your computer and use it in GitHub Desktop.
number reducer
export default (state=null, action)=>{
if (action.type === 'GENERATE_NUMBER'){
return action.payload;
}
return state;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment