naive/inputview.go

9 lines
103 B
Go
Raw Normal View History

2025-01-20 07:34:39 +01:00
package naive
type (
TextInputView struct {
Value TextContent
Placeholder TextContent
}
)