storybook/docs/snippets/common/component-story-mdx-description.mdx.mdx
jonniebigodes 714076bc30 removes the shell and json file references.
Updates for the writing docs section
2020-08-11 02:32:01 +01:00

15 lines
287 B
Plaintext

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