mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 02:11:07 +08:00
16 lines
283 B
Plaintext
16 lines
283 B
Plaintext
```ts
|
|
// Button.stories.tsx
|
|
|
|
import React from 'react';
|
|
import { Story } from '@storybook/react/types-6-0';
|
|
|
|
const Template: Story<ButtonProps> = (args) => <Button {...args} />;
|
|
|
|
export const Primary = Template.bind({});
|
|
|
|
Primary.args = {
|
|
primary: true,
|
|
label: 'Primary',
|
|
};
|
|
```
|