From a2e7cddbb11ed8a228540b2f25b00d964f848dd8 Mon Sep 17 00:00:00 2001 From: MaolinPan Date: Thu, 10 Jun 2021 21:32:07 +0800 Subject: [PATCH] app\src\static\app.js #56 "you have no todo items yet! Add one above" --- app/src/static/js/app.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/src/static/js/app.js b/app/src/static/js/app.js index 4ec962c..8a95f52 100644 --- a/app/src/static/js/app.js +++ b/app/src/static/js/app.js @@ -52,8 +52,8 @@ function TodoListCard() { return ( - {items.length === 0 && ( -

No items yet! Add one above!

+ {items.length === 0 && ( +

You have no todo items yet! Add one above!

)} {items.map(item => (