storybook/docs/snippets/common/button-story-hoisted.js.mdx
2021-01-28 00:11:22 +00:00

11 lines
218 B
Plaintext

```js
// Button.stories.js | Button.stories.ts
export default {
title: 'Design System/Atoms/Button',
};
// This is the only named export in the file, and it matches the component name
export const Button = ...
```