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