storybook/docs/snippets/common/component-story-disable-controls-regex.mdx.mdx

18 lines
498 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>
```