storybook/docs/snippets/angular/component-story-static-asset-without-import.mdx.mdx
2021-08-05 18:51:23 +01:00

13 lines
226 B
Plaintext

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