storybook/docs/snippets/react/button-story.ts.mdx
2020-09-15 21:25:58 +01: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>;
```