storybook/docs/snippets/common/component-story-disable-controls-regex.mdx.mdx
2021-10-14 21:29:54 +01:00

47 lines
837 B
Plaintext

```md
<!--- YourComponent.stories.mdx -->
import { Story } from '@storybook/addon-docs';
import { YourComponent } from './YourComponent';
<Meta title="YourComponent" component={YourComponent} />
<!-- Render functions are a framework specific feature to allow you control on how the component renders -->
<Story
name="Array Include"
parameters={{
controls: {
include: ['foo', 'bar']
}
}}
render={() => ({ })}/>
<Story
name="Regex Include"
parameters={{
controls: { include:
/^hello*/
}
}}
render={() => ({ })}/>
<Story
name="Array Exclude"
parameters={{
controls: {
exclude: ['foo', 'bar']
}
}}
render={() => ({ })}/>
<Story
name="Regex Exclude"
parameters={{
controls: {
exclude: /^hello*/
}
}}
render={() => ({ })}/>
```