mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 05:51:06 +08:00
14 lines
259 B
Plaintext
14 lines
259 B
Plaintext
```ts
|
|
// MyComponent.stories.ts
|
|
|
|
import { Meta } from '@storybook/angular/types-6-0';
|
|
|
|
export default {
|
|
title: 'img',
|
|
} as Meta;
|
|
|
|
export const withAnImage = () => ({
|
|
template: `<img src="https://place-hold.it/350x150" alt="My CDN placeholder" />`
|
|
});
|
|
```
|