storybook/docs/snippets/angular/component-story-static-asset-without-import.mdx.mdx
2021-10-11 23:50:18 +01:00

17 lines
426 B
Plaintext

```md
<!-- MyComponent.stories.mdx -->
import { Meta, Story } from '@storybook/addon-docs';
import { MyComponent } from './MyComponent.component';
<Meta title="img" component={MyComponent}/>
<!-- Render functions are a framework specific feature to allow you control on how the component renders -->
<Story
name="withAnImage"
render={() => ({
template: `<img src="/otherimage.jpg" alt="my image"/>`,
})} />
```