useFormGroup sample app

Text field

Radio buttons

Checkboxes

Selection

{
  "status": "VALID",
  "values": {
    "text": "abcd",
    "radio": "1",
    "checkbox": [
      "val2"
    ],
    "select": "1"
  },
  "errors": {
    "text": null,
    "radio": null,
    "checkbox": null,
    "select": null
  },
  "meta": {
    "text": {
      "pristine": true,
      "dirty": false,
      "touched": false,
      "untouched": true
    },
    "radio": {
      "pristine": true,
      "dirty": false,
      "touched": false,
      "untouched": true
    },
    "checkbox": {
      "pristine": true,
      "dirty": false,
      "touched": false,
      "untouched": true
    },
    "select": {
      "pristine": true,
      "dirty": false,
      "touched": false,
      "untouched": true
    }
  }
}