mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 11:01:07 +08:00
19 lines
489 B
Plaintext
19 lines
489 B
Plaintext
```ts
|
|
// MyComponent.stories.ts|tsx
|
|
|
|
import React from 'react';
|
|
|
|
import type { Meta } from '@storybook/react';
|
|
|
|
export default {
|
|
/* 👇 The title prop is optional.
|
|
* See https://storybook.js.org/docs/7.0/react/configure/overview#configure-story-loading
|
|
* to learn how to generate automatic titles
|
|
*/
|
|
title: 'img',
|
|
} as Meta;
|
|
|
|
export const WithAnImage = {
|
|
render: () => <img src="https://storybook.js.org/images/placeholders/350x150.png" alt="My CDN placeholder" />,
|
|
};
|
|
``` |