mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-08 06:51:46 +08:00
15 lines
266 B
Plaintext
15 lines
266 B
Plaintext
```js
|
|
// MyComponent.stories.js
|
|
|
|
import { html } from 'lit';
|
|
|
|
export default {
|
|
component: 'my-component',
|
|
};
|
|
|
|
// Assume image.png is located in the "public" directory.
|
|
export const WithAnImage = {
|
|
render: () => html`<img src="/image.png" alt="image" />`,
|
|
};
|
|
```
|