storybook/docs/snippets/common/component-story-mdx-dedent.mdx.mdx
Matthew Borgman 7fb8699305
Remove errant , that's causing compilation errors
```
Error: Module build failed (from ../../node_modules/@mdx-js/loader/index.js):
SyntaxError: unknown: Unexpected token (195:16)

  193 |   language='css'
  194 |   dark
> 195 |   format={false},
      |                 ^
  196 |   code={`
  197 |      .container {
  198 |        display: grid | inline-grid;
```
2022-04-19 15:27:25 -05:00

25 lines
346 B
Plaintext

```md
<!-- MyComponent.stories.mdx -->
import { Source } from '@storybook/addon-docs';
import dedent from 'ts-dedent';
## With code snippet
<Source
language='css'
dark
format={false}
code={dedent`
.container {
display: grid | inline-grid;
}
`}
/>
## With Story Id
<Source id="example-mycomponent--starter" />
```