storybook/docs/snippets/common/component-story-disable-controls-regex.mdx.mdx
2021-05-06 21:05:56 +01:00

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>
```