storybook/docs/snippets/web-components/component-story-static-asset-without-import.js.mdx
2023-05-25 21:04:33 +01:00

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" />`,
};
```