diff --git a/app/client.imba b/app/client.imba index b24c448..4cc6974 100644 --- a/app/client.imba +++ b/app/client.imba @@ -22,7 +22,6 @@ tag app def fetch const dataFetch = await window.fetch("/todos") data = await dataFetch.json() - console.log(data) def mount fetch() diff --git a/app/todos.imba b/app/todos.imba index 2c31636..e89850a 100644 --- a/app/todos.imba +++ b/app/todos.imba @@ -4,11 +4,15 @@ tag todo-item

data export tag TodoApp + css margin-top: 20px mb: 20px prop todos for todo in todos export tag TodoForm + css button background:#b2f5ea + css button@hover background:#e76f51 + prop message