class ActiveTable is export {
has THead() $.thead;
method RENDER {
q:to/END/
<table class="striped">
<?.thead>
<&THead(.thead)>
</?>
<tbody id="search-results">
</tbody>
</table>
END
}
}
class Results is export {
has @.results;
method RENDER {
q:to/END/
<@results>
<tr>
<td><.firstName></td>
<td><.lastName></td>
<td><.email></td>
</tr>
</@>
END
}
}
Created
December 17, 2024 11:43
-
-
Save librasteve/4a0c7322387467e2919dbee52760cc21 to your computer and use it in GitHub Desktop.
htmxas1.md
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment