mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 15:31:16 +08:00
19 lines
499 B
Plaintext
19 lines
499 B
Plaintext
```md
|
|
<!--- YourComponent.stories.mdx -->
|
|
|
|
<Story name="Array Include" parameters={{ controls: { include: ['foo', 'bar'] } }}>
|
|
{Template.bind({})}
|
|
</Story>
|
|
|
|
<Story name="Regex Include" parameters={{ controls: { include: /^hello*/ } }}>
|
|
{Template.bind({})}
|
|
</Story>
|
|
|
|
<Story name="Array Exclude" parameters={{ controls: { exclude: ['foo', 'bar'] } }}>
|
|
{Template.bind({})}
|
|
</Story>
|
|
|
|
<Story name="Regex Exclude" parameters={{ controls: { exclude: /^hello*/ } }}>
|
|
{Template.bind({})}
|
|
</Story>
|
|
``` |