storybook/docs/snippets/react/component-story-static-asset-without-import.mdx.mdx
2021-08-09 19:19:01 +01:00

11 lines
197 B
Plaintext

```md
<!-- MyComponent.stories.mdx -->
import { Meta, Story } from '@storybook/addon-docs';
<Meta title="img" />
<Story name="withAnImage">
<img src="/image.png" alt="my image" />
</Story>
```