mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 07:11:29 +08:00
19 lines
294 B
Plaintext
19 lines
294 B
Plaintext
```ts
|
|
// MyComponent.stories.ts
|
|
|
|
import { MyComponent } from './MyComponent.component';
|
|
|
|
export default {
|
|
component: MyComponent,
|
|
};
|
|
|
|
export const WithAnImage = {
|
|
render: () => ({
|
|
props: {
|
|
src: 'https://place-hold.it/350x150',
|
|
alt: 'My CDN placeholder',
|
|
},
|
|
}),
|
|
};
|
|
```
|