From 5d9f340bf010fa06902cbbfa4abb9ddae54f038e Mon Sep 17 00:00:00 2001 From: Luke Carr Date: Tue, 5 Apr 2022 13:31:47 +0000 Subject: [PATCH] =?UTF-8?q?=F0=9F=92=84=20Added=20styling=20to=20new=20tas?= =?UTF-8?q?k=20form?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend/src/components/Welcome.tsx | 2 +- frontend/src/routes/todos.tsx | 10 +++++++--- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/frontend/src/components/Welcome.tsx b/frontend/src/components/Welcome.tsx index 18329fa..58df772 100644 --- a/frontend/src/components/Welcome.tsx +++ b/frontend/src/components/Welcome.tsx @@ -7,7 +7,7 @@ const Welcome: FunctionalComponent = () => { if (hidden) return null - return
+ return

Welcome to tiny-todo!

A simple todo app that's: tiny 🐜, lightweight 🔦🏋️‍♀️, and performant ⚡. Built using Go & Preact!

diff --git a/frontend/src/routes/todos.tsx b/frontend/src/routes/todos.tsx index 29aad81..cc45254 100644 --- a/frontend/src/routes/todos.tsx +++ b/frontend/src/routes/todos.tsx @@ -42,9 +42,13 @@ const NewTask: FunctionalComponent = () => { reset() } - return
- - + return + +
}