mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 06:51:17 +08:00
22 lines
362 B
Plaintext
22 lines
362 B
Plaintext
```md
|
|
<!-- Button.stories.mdx -->
|
|
|
|
import { Meta } from '@storybook/addon-docs';
|
|
|
|
import { Button } from './Button';
|
|
|
|
|
|
<Meta
|
|
title="Button"
|
|
parameters={{
|
|
backgrounds: {
|
|
default: 'twitter',
|
|
values: [
|
|
{ name: 'twitter', value: '#00aced' },
|
|
{ name: 'facebook', value: '#3b5998' },
|
|
],
|
|
},
|
|
}}
|
|
component={Button}
|
|
/>
|
|
``` |