mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 15:31:16 +08:00
26 lines
363 B
Plaintext
26 lines
363 B
Plaintext
```ts
|
|
// MyComponent.stories.ts
|
|
|
|
import { MyComponent } from './MyComponent.component';
|
|
|
|
import imageFile from './static/image.png';
|
|
|
|
export default {
|
|
component: MyComponent,
|
|
};
|
|
|
|
const image = {
|
|
src: imageFile,
|
|
alt: 'my image',
|
|
};
|
|
|
|
export const WithAnImage = {
|
|
render: () => ({
|
|
props: {
|
|
src: image.src,
|
|
alt: image.alt,
|
|
},
|
|
}),
|
|
};
|
|
```
|