Files
isaiah/app/server/ui/tab.go
2024-01-04 01:24:18 +01:00

9 lines
110 B
Go

package ui
// Represent a tab in the web browser
type Tab struct {
Key string
Title string
Rows Rows
}