mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 05:41:07 +08:00
16 lines
210 B
Plaintext
16 lines
210 B
Plaintext
```ts
|
|
//Button.stories.ts
|
|
|
|
const Template = (args: Button) => ({
|
|
component: Button,
|
|
props: args,
|
|
});
|
|
|
|
export const Primary = Template.bind({});
|
|
|
|
Primary.args = {
|
|
primary: true,
|
|
label: 'Primary',
|
|
};
|
|
```
|