storybook/docs/snippets/react/button-story.ts.mdx
2020-10-07 12:23:34 +08:00

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>;
```