storybook/docs/snippets/react/button-story.ts.mdx
2021-06-18 17:34:13 +01:00

16 lines
314 B
Plaintext

```ts
// Button.stories.ts | Button.stories.tsx
import React from 'react'
import { Meta } from '@storybook/react';
import { Button } from './Button';
export default {
component: Button,
title: 'Components/Button',
} as Meta;
export const Primary: React.VFC<{}> = () => <Button primary>Button</Button>;
```