mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 05:31:05 +08:00
17 lines
219 B
Plaintext
17 lines
219 B
Plaintext
```ts
|
|
// Button.stories.ts
|
|
|
|
import Button from './button.component';
|
|
|
|
export default {
|
|
title: 'Components/Button',
|
|
component: Button,
|
|
};
|
|
|
|
export const Primary = () => ({
|
|
props: {
|
|
label: 'Button',
|
|
},
|
|
});
|
|
```
|