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