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