From de96af368d787f2aac6d5fb680e424c01dcfea5e Mon Sep 17 00:00:00 2001 From: Matt Huntington Date: Wed, 12 Jul 2017 21:50:44 -0400 Subject: [PATCH] adding a feature --- day5/README.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/day5/README.md b/day5/README.md index dabf24f..11a469d 100644 --- a/day5/README.md +++ b/day5/README.md @@ -1 +1,13 @@ # Exercises with code bases + +## Adding a Feature + +Look around [the comments app](comments/). This is just a basic app that displays a list of comments + +- Alter it so that each comment has an author, represented by a string. +- Add a feature that allows you to add more comments + - This should be all within the same component + - Visually, it should consist of two text inputs (one for author, one for comment) and a submit button +- Add a feature that allows you to delete comments +- Add a feature that allows you to edit comments + - You should be able to click on a comment, and the text will be replaced by two text inputs (one for author, one for comment)