mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 08:01:20 +08:00
15 lines
522 B
Plaintext
15 lines
522 B
Plaintext
```js
|
|
// YourComponent.stories.js | YourComponent.stories.jsx | YourComponent.stories.ts | YourComponent.stories.tsx
|
|
|
|
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*/ } };
|
|
``` |