mirror of
https://github.com/rjNemo/rentease.git
synced 2026-06-10 20:56:50 +00:00
9 lines
160 B
Text
9 lines
160 B
Text
package view
|
|
|
|
templ ItemList(itemList ItemListViewModel) {
|
|
<tbody id="line-items">
|
|
for _, item := range itemList.Items {
|
|
@LineItem(&item)
|
|
}
|
|
</tbody>
|
|
}
|