mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 16:11:33 +08:00
15 lines
466 B
Plaintext
15 lines
466 B
Plaintext
```js
|
|
// YourComponent.stories.js | YourComponent.stories.ts
|
|
|
|
ArrayInclude = Template.bind({})
|
|
ArrayInclude.parameters = { controls: { include: ['foo', 'bar'] } };
|
|
|
|
RegexInclude = Template.bind({})
|
|
RegexInclude.parameters = { controls: { include: /^hello*/ } };
|
|
|
|
ArrayExclude = Template.bind({})
|
|
ArrayExclude.parameters = { controls: { exclude: ['foo', 'bar'] } };
|
|
|
|
RegexExclude = Template.bind({})
|
|
RegexExclude.parameters = { controls: { exclude: /^hello*/ } };
|
|
``` |