Skip to content

Instantly share code, notes, and snippets.

@archi14
Last active February 11, 2022 09:42
Show Gist options
  • Save archi14/6567fdf654f9d812a4449f5d1830a461 to your computer and use it in GitHub Desktop.
Save archi14/6567fdf654f9d812a4449f5d1830a461 to your computer and use it in GitHub Desktop.
action-creator
export const generateRandom = () => {
// An action, which return a new random number.
return {
type:'GENERATE_NUMBER',
payload:parseInt(Math.random()*100)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment