mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 05:41:07 +08:00
23 lines
395 B
Plaintext
23 lines
395 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**',
|
|
},
|
|
},
|
|
};
|
|
``` |