mirror of
https://github.com/will-moss/isaiah.git
synced 2024-08-22 23:27:15 +03:00
9 lines
110 B
Go
9 lines
110 B
Go
package ui
|
|
|
|
// Represent a tab in the web browser
|
|
type Tab struct {
|
|
Key string
|
|
Title string
|
|
Rows Rows
|
|
}
|