mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 07:21:17 +08:00
21 lines
445 B
Plaintext
21 lines
445 B
Plaintext
```md
|
|
<!-- Button.stories.mdx -->
|
|
|
|
import { Meta, Story } from '@storybook/addon-docs';
|
|
|
|
import { Button } from './Button';
|
|
|
|
<Meta title="Button" component={Button}/>
|
|
|
|
<Story name="Primary">
|
|
<Button backgroundColor="#ff0" label="Button" />
|
|
</Story>
|
|
|
|
<Story name="Secondary">
|
|
<Button backgroundColor="#ff0" label="😄👍😍💯" />
|
|
</Story>
|
|
|
|
<Story name="Tertiary">
|
|
<Button backgroundColor="#ff0" label="📚📕📈🤓" />
|
|
</Story>
|
|
``` |