mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-08 07:01:53 +08:00
10 lines
166 B
Plaintext
10 lines
166 B
Plaintext
```js
|
|
// Button.stories.js
|
|
|
|
import { Button } from './Button';
|
|
|
|
export const Primary=()=><Button primary label="Button"/>;
|
|
|
|
Primary.storyName='I am the primary';
|
|
```
|