mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 06:51:19 +08:00
14 lines
239 B
Plaintext
14 lines
239 B
Plaintext
```js
|
|
// MyComponent.stories.js
|
|
|
|
import React from 'react';
|
|
|
|
export default {
|
|
title: 'img',
|
|
};
|
|
|
|
// Assume image.png is located in the "public" directory.
|
|
export const withAnImage = () => (
|
|
<img src="/image.png" alt="my image" />
|
|
);
|
|
``` |