mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 16:11:33 +08:00
10 lines
165 B
Plaintext
10 lines
165 B
Plaintext
```js
|
|
// MyComponent.stories.js
|
|
|
|
export default {
|
|
title: "img",
|
|
};
|
|
export const withAnImage = () => ({
|
|
template: '<img src="image.png" alt="my image" />'
|
|
});
|
|
``` |