12 lines
204 B
Go
12 lines
204 B
Go
package components
|
|
|
|
type FormInput struct {
|
|
ID string
|
|
Label string
|
|
Type string
|
|
Placeholder string
|
|
Value string
|
|
Hint string
|
|
Error string
|
|
IsDisabled bool
|
|
}
|