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