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

18 lines
406 B
Plaintext

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