storybook/docs/snippets/angular/button-story-rename-story.ts.mdx
2021-09-06 22:03:15 +01:00

20 lines
265 B
Plaintext

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