storybook/docs/snippets/common/component-story-mdx-description.mdx.mdx
2022-02-22 23:02:42 +00:00

19 lines
285 B
Plaintext

```md
<!-- Button.stories.mdx -->
import { Description } from '@storybook/addon-docs';
import dedent from 'ts-dedent';
import { Button } from './Button';
<Description of={Button} />
<Description markdown={dedent`
## Custom description
Insert fancy markdown here.
`}/>
```