[WIP] Layout

This commit is contained in:
Martin Pander
2024-05-22 16:20:57 +02:00
parent a23b76c3c9
commit 14dbfc406d
15 changed files with 378 additions and 160 deletions

9
common/component.go Normal file
View File

@ -0,0 +1,9 @@
package common
import tea "github.com/charmbracelet/bubbletea"
type Component interface {
tea.Model
//help.KeyMap
SetSize(width int, height int)
}