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 + +
}