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

32 lines
694 B
Plaintext

```md
<!-- MyComponent.stories.mdx -->
import { Meta, Story } from '@storybook/addon-docs';
import { MyComponent } from './MyComponent.component';
import imageFile from './static/image.png';
<Meta title="img" component={MyComponent}/>
<!--
👇 Render functions are a framework specific feature to allow you control on how the component renders.
See https://storybook.js.org/docs/7.0/angular/api/csf
to learn how to use render functions.
-->
export const image = {
src: imageFile,
alt: 'my image',
};
<Story
name="WithAnImage"
render={() => ({
props: {
src: image.src,
alt: image.alt,
},
template: `<img src="{{src}}" alt="{{alt}}" />`,
})} />
```