storybook/docs/snippets/angular/button-story-rename-story.ts.mdx
2020-08-07 17:05:17 +01:00

14 lines
206 B
Plaintext

```ts
// Button.stories.ts
import Button from './button.component';
export const Primary = () => ({
component: Button,
props: {
label: 'Button',
},
});
Primary.storyName='I am the primary';
```