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

12 lines
165 B
Plaintext

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