mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 07:01:21 +08:00
14 lines
206 B
Plaintext
14 lines
206 B
Plaintext
```ts
|
|
// Button.stories.ts
|
|
|
|
import Button from './button.component';
|
|
|
|
export const Primary = () => ({
|
|
component: Button,
|
|
props: {
|
|
label: 'Button',
|
|
},
|
|
});
|
|
|
|
Primary.storyName='I am the primary';
|
|
``` |