rm -r --cached pkg/web

This commit is contained in:
viljarb
2026-02-18 20:48:30 +01:00
parent a6ec856759
commit 77dd155299
37 changed files with 0 additions and 3558 deletions

View File

@@ -1,28 +0,0 @@
package base
templ Table(headers []templ.Component, rows []templ.Component, attrs templ.Attributes) {
<div class="overflow-x-auto">
<table { attrs... } class="table">
<thead>
<tr>
for _, header := range headers {
<th>
@header
</th>
}
</tr>
</thead>
<tbody>
for _, trow := range rows {
@trow
}
</tbody>
</table>
</div>
}
// Component to use as plain text when
// templ.Component is used as argument
templ PlainText(content string) {
{ content }
}