storybook/docs/snippets/common/component-story-disable-controls-regex.mdx.mdx
2022-07-07 19:26:21 +01:00

45 lines
848 B
Plaintext

```md
<!-- YourComponent.stories.mdx -->
import { Meta, Story } from '@storybook/addon-docs';
import { YourComponent } from './YourComponent';
<Meta title="YourComponent" component={YourComponent} />
<Story
name="Array Include"
parameters={{
controls: {
include: ['foo', 'bar']
}
}}
render={() => ({ // Your implementation here })} />
<Story
name="Regex Include"
parameters={{
controls: { include:
/^hello*/
}
}}
render={() => ({ // Your implementation here })} />
<Story
name="Array Exclude"
parameters={{
controls: {
exclude: ['foo', 'bar']
}
}}
render={() => ({ // Your implementation here })} />
<Story
name="Regex Exclude"
parameters={{
controls: {
exclude: /^hello*/
}
}}
render={() => ({ // Your implementation here })} />
```