mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 16:11:33 +08:00
11 lines
195 B
Plaintext
11 lines
195 B
Plaintext
```js
|
|
// MyComponent.stories.js
|
|
|
|
export default {
|
|
title: "img",
|
|
};
|
|
export const withAnImage = () => ({
|
|
template: '<img src="https://place-hold.it/350x150" alt="My CDN placeholder"/>'
|
|
});
|
|
```
|