Skip to content

Instantly share code, notes, and snippets.

@tjinauyeung
Created November 23, 2019 20:07
Show Gist options
  • Save tjinauyeung/b8739f87200e6533e16ee23719ede4df to your computer and use it in GitHub Desktop.
Save tjinauyeung/b8739f87200e6533e16ee23719ede4df to your computer and use it in GitHub Desktop.
this.state = {
quotesLiked: [],
quotesDisliked: []
};
setLiked = (id) => {
this.setState({quotesLiked: [
...this.state.quotesLiked,
id
]);
}
setDisLiked = (id) => {
this.setState({quotesDisLiked: [
...this.state.quotesDisLiked,
id
]);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment