We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Documentation describe values for source key of attributes object: https://developer.wordpress.org/block-editor/developers/block-api/block-attributes/
But source: 'children' is not described.
Where I can read about 'children' value ?
The text was updated successfully, but these errors were encountered:
children is a ReactJS prop that every component receives. It contains any values "inside" that component.
children
e.g. If you are using JSX that looks something like
<MyComponent> <h2>My Title</h2> <p>My paragraph</p> </MyComponent>
MyComponent will receive a children prop that contains the h2 and p tags with their content.
MyComponent
h2
p
Sorry, something went wrong.
No branches or pull requests
Documentation describe values for source key of attributes object:
https://developer.wordpress.org/block-editor/developers/block-api/block-attributes/
But source: 'children' is not described.
Where I can read about 'children' value ?
The text was updated successfully, but these errors were encountered: