Create a comment section using React and the state management using redux
- Create a component that will contain an input for the author, textarea for the comment, and a button to add the comment.
- Create a component that will list all comments.
- Create a component that will show comments. It should show who is the author, what is the comment and how many 👍 does it have. It should show 3 buttons: Delete comment, Edit comment, and Like comment  that do the following:
- Delete comment should delete the comment.
- Edit the comment should edit only the comment. Not the author or the likes.
- Like comment should add +1 to the counter that shows the likes.
 
- All the data should be coming from a Redux store.
- Style the react app using any of the frameworks you want. Be creative 🎨
Have fun, and Good luck :D