13 lines
133 B
Go
13 lines
133 B
Go
|
package naive
|
||
|
|
||
|
type (
|
||
|
TabView struct {
|
||
|
Children []TabViewItem
|
||
|
}
|
||
|
|
||
|
TabViewItem struct {
|
||
|
Title TextContent
|
||
|
Content View
|
||
|
}
|
||
|
)
|