With formik it's possible to created nested elements:
const initialData = {
displayName: '',
name: {
givenName: '',
familyName: '',
}
}
It is now possible to define a field like this:
<Field name="name.givenName" ... />
Using reactstrap-formik controls this doesn't work.
With formik it's possible to created nested elements:
It is now possible to define a field like this:
Using reactstrap-formik controls this doesn't work.