core/template/components/form_input.go

13 lines
204 B
Go
Raw Normal View History

2024-10-07 19:10:04 -04:00
package components
type FormInput struct {
ID string
Label string
Type string
Placeholder string
Value string
Hint string
Error string
IsDisabled bool
}