storybook/docs/snippets/angular/button-story-with-args.ts.mdx
2021-03-09 15:26:53 +00:00

19 lines
358 B
Plaintext

```ts
//Button.stories.ts
import { Story } from '@storybook/angular/types-6-0';
//👇 We create a “template” of how args map to rendering
const Template: Story<Button> = (args) => ({
props: args,
});
//👇 Each story then reuses that template
export const Primary = Template.bind({});
Primary.args = {
primary: true,
label: 'Primary',
};
```