mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 23:01:16 +08:00
initial changes for issue 10856
This commit is contained in:
parent
f6a9bbdf96
commit
605b016343
@ -61,9 +61,18 @@ One way we improve that situation is by pulling the rendered subcomponent out in
|
||||
|
||||
Now that `children` is an arg, we can potentially reuse it in another story.
|
||||
|
||||
However there are some caveats when using this approach that you should be aware of.
|
||||
|
||||
The `children` `args` as any other arg needs to be JSON serializable. This means that you should:
|
||||
|
||||
- avoid using empty values.
|
||||
- avoid using components that include third party libraries such as `emotion`.
|
||||
|
||||
As they could lead into errors with your Storybook.
|
||||
|
||||
<div class="aside">
|
||||
|
||||
As things stand (we hope to improve this soon) you cannot edit children in a control yet.
|
||||
We're currently working on improving the overall experience for the children arg and allow you to edit children arg in a control and allow you to use other types of components in the near future. But for now you need to factor in this caveat when you're implementing your stories.
|
||||
|
||||
</div>
|
||||
|
||||
|
@ -10,7 +10,7 @@ Learn how and why to write stories in [the introduction](./introduction.md#using
|
||||
|
||||
## Args object
|
||||
|
||||
The args object can be defined at the story and component level (see below). It is an object with string keys, where values can have any type that is allowed to be passed into a component in your framework.
|
||||
The args object can be defined at the story and component level (see below). It is an JSON serializable object, composed of string keys with matching valid value types that can be passed into a component for your framework.
|
||||
|
||||
## Story args
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user