mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 05:51:06 +08:00
14 lines
283 B
Plaintext
14 lines
283 B
Plaintext
```ts
|
|
// Button.stories.ts | Button.stories.tsx
|
|
|
|
import React from 'react';
|
|
|
|
import { Story } from '@storybook/react';
|
|
|
|
import { Button, ButtonProps } from './Button';
|
|
|
|
export const Primary: Story = () => <Button primary>Button</Button>;
|
|
|
|
Primary.storyName = 'I am the primary';
|
|
```
|