mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 06:51:19 +08:00
13 lines
228 B
Plaintext
13 lines
228 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="/image.png" alt="my image"/>`
|
|
});
|
|
``` |