storybook/docs/snippets/react/button-story-default-export-with-component.js.mdx
2020-08-07 17:05:17 +01:00

10 lines
137 B
Plaintext

```js
// Button.stories.js
import { Button } from './Button';
export default {
title: 'Components/Button',
component: Button,
}
```