Skip to content

Commit 9e76cd1

Browse files
committed
doctoc readme
1 parent a1e97e4 commit 9e76cd1

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,8 @@ const MyForm = () => (
129129
- [Third Party Components](#third-party-components)
130130
- [Material-UI 3.0](#material-ui-30)
131131
- [💥 Performance Optimization Through Subscriptions 💥](#-performance-optimization-through-subscriptions-)
132-
- [Independent Error Component](#independent-error-component)
132+
- [Independent Error Component (with Render Props)](#independent-error-component-with-render-props)
133+
- [Independent Error Component (with Hooks)](#independent-error-component-with-hooks)
133134
- [Loading and Initializing Values](#loading-and-initializing-values)
134135
- [Field Arrays](#field-arrays)
135136
- [Fields Component](#fields-component)
@@ -174,12 +175,12 @@ const MyForm = () => (
174175
- [`children?: ((props: FieldRenderProps) => React.Node) | React.Node`](#children-props-fieldrenderprops--reactnode--reactnode)
175176
- [`component?: React.ComponentType<FieldRenderProps> | string`](#component-reactcomponenttypefieldrenderprops--string)
176177
- [`defaultValue?: any`](#defaultvalue-any)
177-
- [`format?: (value: any, name: string) => any`](#format-value-any-name-string--any)
178+
- [`format?: ((value: any, name: string) => any)`](#format-value-any-name-string--any)
178179
- [`formatOnBlur?: boolean`](#formatonblur-boolean)
179180
- [`initialValue?: any`](#initialvalue-any)
180181
- [`isEqual?: (a: any, b: any) => boolean`](#isequal-a-any-b-any--boolean)
181182
- [`name: string`](#name-string)
182-
- [`parse?: (value: any, name: string) => any`](#parse-value-any-name-string--any)
183+
- [`parse?: ((value: any, name: string) => any)`](#parse-value-any-name-string--any)
183184
- [`render?: (props: FieldRenderProps) => React.Node`](#render-props-fieldrenderprops--reactnode)
184185
- [`subscription?: FieldSubscription`](#subscription-fieldsubscription)
185186
- [`validate?: (value: ?any, allValues: Object, meta: ?FieldState) => ?any`](#validate-value-any-allvalues-object-meta-fieldstate--any)

0 commit comments

Comments
 (0)