mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 08:01:20 +08:00
14 lines
297 B
Plaintext
14 lines
297 B
Plaintext
```js
|
|
// MyComponent.stories.js | MyComponent.stories.jsx | MyComponent.stories.ts | MyComponent.stories.tsx
|
|
|
|
import React from 'react';
|
|
|
|
export default {
|
|
title: 'img',
|
|
};
|
|
|
|
export const withAnImage = {
|
|
render: () => <img src="https://place-hold.it/350x150" alt="My CDN placeholder" />,
|
|
};
|
|
```
|