storybook/docs/snippets/angular/component-story-static-asset-without-import.mdx.mdx
2022-07-07 19:05:48 +01:00

16 lines
379 B
Plaintext

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