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