Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
Size: Mime:
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 }