package ui type TableProps struct { Head templ.Component Body templ.Component } templ Table(props TableProps) {
if props.Head != nil { @props.Head } if props.Body != nil { @props.Body }
}