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