Repository URL to install this package:
Version:
0.14.1 ▾
|
import React from 'react'
import { FormState, toInputState } from 'src/forms'
import { InputsListType } from './typings'
class ExampleFormState extends FormState {
inputsList: InputsListType = [
{
identity: 'eh',
name: 'eh',
className: 'canada-eh',
type: 'text',
value: '',
animatePlaceholder: true,
isLabelOnTop: false,
placeholderText: 'eh',
maxLength: '50',
validationType: 'required',
errorMessageFor: 'eh',
},
]
}
export { ExampleFormState }