mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 07:01:21 +08:00
22 lines
432 B
Plaintext
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',
|
|
},
|
|
})} />
|
|
``` |