Skip to content

Instantly share code, notes, and snippets.

@librasteve
Created December 17, 2024 11:43
Show Gist options
  • Save librasteve/4a0c7322387467e2919dbee52760cc21 to your computer and use it in GitHub Desktop.
Save librasteve/4a0c7322387467e2919dbee52760cc21 to your computer and use it in GitHub Desktop.
htmxas1.md
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
	}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment