clustvirt/view/components/flexrow.templ
Matthew Stobbs 5fd215d6dd nav bar!
Added a navbar that doesn't do anything to the homepage
2024-03-15 16:48:11 -06:00

13 lines
216 B
Plaintext

package components
templ FlexRow(wrap bool) {
<div class={
"flex",
templ.KV("flex-nowrap", !wrap),
templ.KV("flex-wrap", wrap),
templ.KV("md:flex-nowrap", wrap)
}>
{ children... }
</div>
}