storybook/docs/snippets/react/button-story.ts.mdx
2021-02-23 00:26:03 +00:00

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