mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 05:31:05 +08:00
21 lines
370 B
Plaintext
21 lines
370 B
Plaintext
```js
|
|
// MyComponent.stories.js | MyComponent.stories.jsx | MyComponent.stories.ts | MyComponent.stories.tsx
|
|
|
|
import React from 'react';
|
|
|
|
import imageFile from './static/image.png';
|
|
|
|
export default {
|
|
title: 'img',
|
|
};
|
|
|
|
const image = {
|
|
src: imageFile,
|
|
alt: 'my image',
|
|
};
|
|
|
|
export const WithAnImage = {
|
|
render: () => <img src={image.src} alt={image.alt} />,
|
|
};
|
|
```
|