App file modified for dropdown option

This commit is contained in:
Bhagwat Chate 2021-01-08 12:19:37 +05:30
parent 3de6451f5c
commit 645f4c55ef
1 changed files with 2 additions and 1 deletions

View File

@ -53,7 +53,8 @@ function TodoListCard() {
<React.Fragment>
<AddItemForm onNewItem={onNewItem} />
{items.length === 0 && (
<p className="text-center">No items yet! Add one above!</p>
/* <p className="text-center">No items yet! Add one above!</p> */
<p className="text-center">You have no todo items yet! Add one above!</p>
)}
{items.map(item => (
<ItemDisplay