mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-08 09:31:47 +08:00
13 lines
201 B
Plaintext
13 lines
201 B
Plaintext
```ts
|
|
// Button.stories.ts
|
|
|
|
import type { Meta } from '@storybook/web-components';
|
|
|
|
const meta: Meta = {
|
|
title: 'Design System/Atoms/Button',
|
|
component: 'demo-button',
|
|
};
|
|
|
|
export default meta;
|
|
```
|