storybook/docs/snippets/angular/button-story-with-args.ts.mdx
2021-08-05 18:51:23 +01:00

26 lines
485 B
Plaintext

```ts
//Button.stories.ts
import { Story, Meta } from '@storybook/angular/types-6-0';
import Button from './button.component';
export default {
title: 'Components/Button',
component: Button,
} as Meta;
//👇 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: 'Button',
};
```