Files
WRNexusJS/.publish/ui/components/table.wrn
T
2026-07-12 15:55:18 +05:30

13 lines
294 B
Plaintext

// Themed table wrapper — put a <table>…</table> (or thead/tbody) in the slot.
// Scrolls horizontally on small screens.
component Table {
props {
class = ""
}
view {
<div class="wire-table-wrap {class}">
<table class="wire-table"><slot></slot></table>
</div>
}
}