mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 22:11:15 +08:00
25 lines
350 B
Plaintext
25 lines
350 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" />
|
|
```
|