Using React, build a like button component. The button should keep track of how many times it has been clicked and update its count each time it is clicked, and should be reusable anywhere on the page.
After completing this assignment, you should...
- Understand how React state works.
- Understand how to build out React events.
- Replicate the following behavior using React.
- The count on the button should increase upon
click - The text on the like button should correctly pluralize itself. For example: 0 likes, 1 like, 2 likes ...
