mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-08 07:01:53 +08:00
9 lines
172 B
Plaintext
9 lines
172 B
Plaintext
```ts
|
|
// Button.stories.ts
|
|
|
|
import React from 'react';
|
|
import { Button } from './Button';
|
|
|
|
export const Primary: React.SFC<{}> = () => <Button primary>Button</Button>;
|
|
```
|