storybook/docs/snippets/angular/button-story.mdx.mdx
2021-10-11 23:50:18 +01:00

22 lines
432 B
Plaintext

```md
<!-- Button.stories.mdx-->
import { Meta, Story } from '@storybook/addon-docs';
import { Button } from './button.component.ts';
<Meta title="Components/Button" component={Button} />
<!-- Render functions are a framework specific feature to allow you control on how the component renders -->
# Button
<Story
name="Primary"
render={() => ({
props: {
primary: true,
label: 'Button',
},
})} />
```