clustvirt/view/components/util.go
Matthew Stobbs 223496075a Adding even more components
- Starting on main manager page
- Manager layout will be included in the manager page
- Manager page will use htmx to load different components via api
2024-03-15 22:50:24 -06:00

15 lines
174 B
Go

package components
import (
"fmt"
)
type NavItem struct {
Name string
Href string
}
func NoWrapSize(size string) string {
return fmt.Sprintf("%s:flex-nowrap", size)
}