package bulma
// Creates a
that accepts children
templ Table(){
}
// Creates a that accepts children.
templ TableHeader() {
{ children... }
}
// Creates a that accepts children.
templ TableRow() {
{ children... }
}
// Creates a and writes the given value
templ TableHeaderData(value string) {
| { value } |
}
// Creates a that allows you to also add a tooltip value
templ TableHeaderDataToolTip(value, tooltip string) {
| { value } |
}
// Creates a that accepts children.
templ TableDataChildren() {
| { children... } |
}
templ TableData(value string) {
{ value } |
}