mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-08 11:11:53 +08:00
18 lines
261 B
Plaintext
18 lines
261 B
Plaintext
```ts
|
|
// Button.stories.ts
|
|
|
|
import type { Meta } from '@storybook/web-components';
|
|
|
|
const meta: Meta = {
|
|
title: 'Button',
|
|
component: 'demo-button',
|
|
parameters: {
|
|
docs: {
|
|
controls: { exclude: ['style'] },
|
|
},
|
|
},
|
|
};
|
|
|
|
export default meta;
|
|
```
|