Docs ยป Stories ยป Stories for multiple components
Stories for multiple components
It's useful to write stories that render two or more components at once if those components are designed to work together. For example, ButtonGroups, Lists, and Page components.
The simplest approach we can take is to reuse the stories of the ListItem in the List:
List.stories.ts|tsx
By rendering the Unchecked story with its args, we are able to reuse the input data from the ListItem stories in the List.
However, we still arenโt using args to control the ListItem stories, which means we cannot change them with controls and we cannot reuse them in other, more complex component stories.
One way we improve that situation is by pulling the rendered subcomponent out into a children arg:
List.stories.ts|tsx
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 childrenargs as any other arg needs to be JSON serializable. It means that you should:
Avoid using empty values
Use caution with components that include third party libraries
As they could lead into errors with your Storybook.
โน๏ธ
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.
Another option that is more โdataโ-based is to create a special โstory-generatingโ template component:
List.stories.ts|tsx
This approach is a little more complex to setup, but it means you can more easily reuse the args to each story in a composite component. It also means that you can alter the args to the component with the Controls addon.