package budget
import "spend-sparrow/internal/template/svg"
templ page(budgets []Budget) {
@newItem()
for _,budget:=range(budgets ) {
@item(budget)
}
}
templ editNew() {
}
templ newItem() {
}
templ item(budget Budget) {
{ budget.Description }
{ 200 }€
}