1
0
Fork 0
forked from goffee/core

components: buttons, dropdown, href, nav

This commit is contained in:
Diana 2024-10-12 13:01:52 -05:00
parent bfde0cc445
commit 7073cd1c21
9 changed files with 106 additions and 19 deletions

View file

@ -0,0 +1,16 @@
package components
type PageNav struct {
NavClass string // nav-pills
NavItems []PageNavItem
IsVertical bool
IsTab bool
}
type PageNavItem struct {
Text string
Link string
IsDisabled bool
IsActive bool
ChildItems []PageNavItem
}