storybook/docs/snippets/angular/button-story-with-args.ts.mdx
2020-08-06 19:03:05 +01:00

14 lines
207 B
Plaintext

```ts
//Button.stories.ts
const Template = (args: Button) => ({
component: Button,
props: args,
});
export const Primary = Template.bind({});
Primary.args = {
primary: true,
label: 'Button',
};
```