Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/framework/preact/guides/form-composition.md
Original file line number Diff line number Diff line change
Expand Up @@ -345,7 +345,7 @@ const FieldGroupPasswordFields = withFieldGroup({

// Optional, but adds props to the `render` function in addition to `form`
props: {
// These default values are also for type-checking and are not used at runtime
// These props are set as default values for the `render` function
title: 'Password',
},
// Internally, you will have access to a `group` instead of a `form`
Expand Down
2 changes: 1 addition & 1 deletion docs/framework/react/guides/form-composition.md
Original file line number Diff line number Diff line change
Expand Up @@ -418,7 +418,7 @@ const FieldGroupPasswordFields = withFieldGroup({

// Optional, but adds props to the `render` function in addition to `form`
props: {
// These default values are also for type-checking and are not used at runtime
// These props are set as default values for the `render` function
title: 'Password',
},
// Internally, you will have access to a `group` instead of a `form`
Expand Down
2 changes: 1 addition & 1 deletion docs/framework/solid/guides/form-composition.md
Original file line number Diff line number Diff line change
Expand Up @@ -258,7 +258,7 @@ const FieldGroupPasswordFields = withFieldGroup({

// Optional, but adds props to the `render` function in addition to `form`
props: {
// These default values are also for type-checking and are not used at runtime
// These props are set as default values for the `render` function
title: 'Password',
},
// Internally, you will have access to a `group` instead of a `form`
Expand Down