Skip to content

Instantly share code, notes, and snippets.

@philipszdavido
Created September 17, 2017 15:48
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 philipszdavido/13f80b152f2156046854225e51dc3f60 to your computer and use it in GitHub Desktop.
Save philipszdavido/13f80b152f2156046854225e51dc3f60 to your computer and use it in GitHub Desktop.
export interface Action {
type : string,
payload?: any
}
dispatch({type:’ADD_ARTICLE’,payload:{
link:’github.com/philipszdavido’,
points:90
}
})
dispatch({type:’LOAD_LINKS’})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment