mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-08 09:31:47 +08:00
18 lines
287 B
Plaintext
18 lines
287 B
Plaintext
```js
|
|
// MyComponent.stories.js
|
|
|
|
import { html } from 'lit';
|
|
|
|
export default {
|
|
component: 'my-component',
|
|
};
|
|
|
|
export const WithAnImage = {
|
|
render: () =>
|
|
html`<img
|
|
src="https://storybook.js.org/images/placeholders/350x150.png"
|
|
alt="My CDN placeholder"
|
|
/>`,
|
|
};
|
|
```
|