mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 07:21:17 +08:00
11 lines
198 B
Plaintext
11 lines
198 B
Plaintext
```js
|
|
// Button.stories.js
|
|
|
|
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 = ...
|
|
```
|