clustvirt/view/components/flexrow.templ
Matthew Stobbs 9c35be1fcf really liking templ
- made multiple components for reuse in templ
- going to start on actual data displaying templates
2024-03-14 21:56:49 -06:00

15 lines
265 B
Plaintext

package components
templ FlexRow(wrap bool, comps ...templ.Component) {
<div class={
"flex",
templ.KV("flex-nowrap", !wrap),
templ.KV("flex-wrap", wrap),
templ.KV("md:flex-nowrap", wrap)
}>
for _, cmp := range comps {
@cmp
}
</div>
}