storybook/docs/snippets/react/button-story.ts.mdx
2020-08-06 19:03:05 +01:00

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