Skip to content

Instantly share code, notes, and snippets.

@librasteve
Last active December 17, 2024 11:49
Show Gist options
  • Save librasteve/f62629df6e6a86413a2b22afd2d3a3f0 to your computer and use it in GitHub Desktop.
Save librasteve/f62629df6e6a86413a2b22afd2d3a3f0 to your computer and use it in GitHub Desktop.
htmxas1
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