Skip to content
Open
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
14 changes: 14 additions & 0 deletions docs/framework/react/guides/basic-concepts.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,20 @@ Example:
)}
/>
```
If you run into issues handing in children as props, make sure to check your linting rules.

Example (ESLint):
```json
"rules": {
"react/no-children-prop": [
true,
{
"allowFunctions": true
}
],
}
```


## Field State

Expand Down