mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 06:51:19 +08:00
24 lines
396 B
Plaintext
24 lines
396 B
Plaintext
```js
|
|
// Button.stories.js | Button.stories.ts
|
|
|
|
export default {
|
|
title: 'CustomDescription',
|
|
parameters: {
|
|
docs: {
|
|
description: {
|
|
component: 'some component _markdown_',
|
|
},
|
|
},
|
|
},
|
|
};
|
|
|
|
export const WithStoryDescription = Template.bind({});
|
|
WithStoryDescription.parameters = {
|
|
docs: {
|
|
description: {
|
|
story: 'some story **markdown**',
|
|
},
|
|
},
|
|
};
|
|
```
|