storybook/docs/snippets/common/component-story-csf-description.js.mdx
2021-05-06 21:05:56 +01:00

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**',
},
},
};
```