storybook/docs/snippets/react/button-story-default-export-with-component.ts.mdx
2020-08-13 19:09:06 +05:30

11 lines
160 B
Plaintext

```ts
// Button.stories.ts
import { Button, ButtonProps } from './Button';
export default {
title: 'Components/Button',
component: Button,
} as Meta;
```