storybook/docs/snippets/angular/component-story-static-asset-with-import.ts.mdx
2021-01-27 20:43:31 +00:00

25 lines
385 B
Plaintext

```ts
// MyComponent.stories.ts
import { Meta } from '@storybook/angular/types-6-0';
import imageFile from './static/image.png';
export default {
title: 'img',
} as Meta;
const image = {
src: imageFile,
alt: 'my image',
};
export const withAnImage = () => ({
template: `<img src="{{src}}" alt="{{alt}}" />`,
props: {
src: image.src,
alt: image.alt,
},
});
```