storybook/docs/snippets/angular/button-story-with-args.ts.mdx
2021-01-27 20:43:31 +00:00

16 lines
209 B
Plaintext

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