mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 02:11:07 +08:00
20 lines
265 B
Plaintext
20 lines
265 B
Plaintext
```ts
|
|
// Button.stories.ts
|
|
|
|
import { Button } from './button.component';
|
|
|
|
export default {
|
|
component: Button,
|
|
};
|
|
|
|
export const Primary = {
|
|
name: 'I am the primary',
|
|
render: () => ({
|
|
props: {
|
|
label: 'Button',
|
|
primary: true,
|
|
},
|
|
}),
|
|
};
|
|
```
|