mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 05:51:06 +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.VFC<{}> = () => <Button primary>Button</Button>;
|
|
``` |