package templates import ( "fmt" "github.com/Cameron-Reed1/todo-web/types" ) templ RootPage() { Todo
Overdue
Today
Upcoming
Create new Todo





Close
} templ TodoItem(item types.Todo) {
{ item.Text }
} templ TodoList(items []types.Todo) {
for _, item := range items { @TodoItem(item) }
}