storybook/docs/snippets/angular/button-story-with-args.mdx.mdx
2021-11-03 23:31:14 +00:00

22 lines
468 B
Plaintext

```md
<!-- Button.stories.mdx-->
import { Meta, Story } from '@storybook/addon-docs';
import { Button } from './button.component';
<Meta title="Button" component={Button} />
<!-- 👇 We create a “template” of how args map to rendering -->
export const Template = (args) => ({ props: args });
<!-- 👇 Each story then reuses that template -->
<Story
name="Primary"
args={{
primary: true,
label: 'Button',
}} >
{Template.bind({})}
</Story>
```