Skip to content

Commit cf3c135

Browse files
authored
Use correct closing tag for <Field> in FieldProps.md (#737)
1 parent dd92bc6 commit cf3c135

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/types/FieldProps.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ A render function that is given [`FieldRenderProps`](FieldRenderProps), as well
5353
console.log(props.someArbitraryOtherProp) // would print 42
5454
return <input {...props.input}/>
5555
}}
56-
</Form>
56+
</Field>
5757
```
5858

5959
Note that if you specify [`render`](#render) or [`component`](#component) _and_ `children`, `render` will be called, with `children` injected as if it were an additional prop. This can be especially useful for doing something like:

0 commit comments

Comments
 (0)