Skip to content

Instantly share code, notes, and snippets.

@productioncoder
Created October 6, 2018 17:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save productioncoder/03c35b07e0a22601103c185df52e908c to your computer and use it in GitHub Desktop.
Save productioncoder/03c35b07e0a22601103c185df52e908c to your computer and use it in GitHub Desktop.
Youtube createAction method inside store/actions
export function createAction(type, payload = {}) {
return {
type,
...payload,
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment