mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-08 11:11:53 +08:00
17 lines
201 B
Plaintext
17 lines
201 B
Plaintext
```js
|
|
// Button.stories.ts
|
|
|
|
export default {
|
|
title: 'Button',
|
|
component: 'demo-button',
|
|
};
|
|
|
|
export const Basic = {
|
|
parameters: {
|
|
docs: {
|
|
source: { language: 'tsx' },
|
|
},
|
|
},
|
|
};
|
|
```
|