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

14 lines
230 B
Plaintext

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