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