mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 15:31:16 +08:00
18 lines
277 B
Plaintext
18 lines
277 B
Plaintext
```js
|
|
// MyComponent.stories.js
|
|
|
|
import React from 'react';
|
|
|
|
import imageFile from './static/image.png';
|
|
|
|
export default {
|
|
title: 'img',
|
|
};
|
|
|
|
const image = {
|
|
src: imageFile,
|
|
alt: 'my image',
|
|
};
|
|
|
|
export const withAnImage = () => <img src={image.src} alt={image.alt} />;
|
|
``` |