13 lines
294 B
Plaintext
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>
|
|
}
|
|
}
|