storybook/docs/snippets/common/button-story-hoisted.js.mdx
2021-06-28 23:00:33 +01:00

13 lines
381 B
Plaintext

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