1
0
Fork 0
forked from goffee/core
core/template/components/form_input.go

14 lines
222 B
Go
Raw Permalink 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
IsRequired bool
2024-10-07 19:10:04 -04:00
}