storybook/docs/snippets/common/component-story-mdx-dedent.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

16 lines
243 B
Plaintext

```md
<!--- MyComponent.stories.mdx -->
import { Source } from '@storybook/addon-docs/blocks';
import dedent from 'ts-dedent';
<Source
language='css'
code={dedent`
.container {
display: grid | inline-grid;
}
`}
/>
```