diff --git a/docs/framework/react/quick-start.md b/docs/framework/react/quick-start.md
index 845bff06e..b75106113 100644
--- a/docs/framework/react/quick-start.md
+++ b/docs/framework/react/quick-start.md
@@ -32,7 +32,12 @@ export default function App() {
(
-
+ field.handleChange(e.target.value)}
+ />
)}
/>
diff --git a/docs/guides/basic-concepts.md b/docs/guides/basic-concepts.md
index 95275e62a..ed891eab0 100644
--- a/docs/guides/basic-concepts.md
+++ b/docs/guides/basic-concepts.md
@@ -49,7 +49,11 @@ Example:
name="firstName"
children={(field) => (
<>
-
+ field.handleChange(e.target.value)}
+ />
>
)}
@@ -68,12 +72,16 @@ const { value, error, touched, isValidating } = field.state
## Field API
-The Field API is an object passed to the render prop function when creating a field. It provides methods for working with the field's state, such as getInputProps, which returns an object with props needed to bind the field to a form input element.
+The Field API is an object passed to the render prop function when creating a field. It provides methods for working with the field's state.
Example:
```tsx
-
+ field.handleChange(e.target.value)}
+/>
```
## Validation
@@ -92,7 +100,11 @@ Example:
}}
children={(field) => (
<>
-
+ field.handleChange(e.target.value)}
+ />
>
)}
@@ -143,7 +155,12 @@ Example:
return (