mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 05:51:21 +08:00
53 lines
835 B
Plaintext
53 lines
835 B
Plaintext
```md
|
|
<!-- YourComponent.stories.mdx -->
|
|
|
|
import { Meta, Story } from '@storybook/addon-docs';
|
|
|
|
import { YourComponent } from './YourComponent';
|
|
|
|
<Meta title="YourComponent" component={YourComponent} />
|
|
|
|
export const Template = (args) => ({
|
|
//👇 Your template goes here
|
|
});
|
|
|
|
<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>
|
|
``` |