Implement nested comments.
Build a comments section which has the following properties:
- The user can add comments directly.
- The user can add a reply to any comment.
- The user can add a reply to any comment which is a reply.
Example of how the comments look below.

When the user clicks on “Add a reply”, they get an input field to type in their comment.

After clicking on submit, the new comment is added to the comments section and displayed in the right place.

Implement the nested comments component using HTML, CSS and JS.



