storybook/docs/snippets/web-components/component-story-static-asset-without-import.js.mdx
2023-02-16 09:13:06 +08:00

16 lines
282 B
Plaintext

```js
// MyComponent.stories.js
import { html } from 'lit';
export default {
title: 'img',
component: 'my-component',
};
// Assume image.png is located in the "public" directory.
export const WithAnImage = {
render: () => html`<img src="/image.png" alt="image" />`,
};
```