storybook/docs/snippets/common/button-story-hoisted.js.mdx
2021-08-28 01:52:57 +01:00

13 lines
306 B
Plaintext

```js
// Button.stories.js | Button.stories.jsx | Button.stories.ts | Button.stories.tsx
import { Button as ButtonComponent } from './Button';
export default {
component: ButtonComponent,
};
// This is the only named export in the file, and it matches the component name
export const Button = {};
```