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