You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
React form renderer is using [react-final-form](https://github.com/final-form/react-final-form) for form state management.
9
-
Most of its features are not directly available for consistency and performance reasons. If you want to create any custom
10
-
components, you can access these features via `FieldProvider` component or `useFieldApi` hook.
7
+
This hook is the main way for connecting custom components to the form state. (You can also access these features via `FieldProvider`, but it's not recommended.) You can read more about that in [Component mapping](/mappers/custom-mapper).
11
8
12
-
`FieldProvider` is a wrapper using `useFieldApi` to get the access to the form state.
13
-
14
-
`useFieldApi` is a wrapper around [React Final Form useField hook](https://final-form.org/docs/react-final-form/api/useField).
15
-
16
-
You can read more about that in [Component mapping](/mappers/custom-mapper).
9
+
Data Driven Forms is using [react-final-form](https://github.com/final-form/react-final-form) for form state management. Most of its features are not directly available for consistency and performance reasons. `useFieldApi` is a wrapper around [React Final Form useField hook](https://final-form.org/docs/react-final-form/api/useField).
17
10
18
11
## Usage
19
12
20
-
Next example shows simple input field with label and error message.
13
+
Next example shows simple input field with a label and an error message.
0 commit comments