mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 08:01:20 +08:00
20 lines
516 B
Plaintext
20 lines
516 B
Plaintext
```md
|
|
<!-- MyComponent.stories.mdx -->
|
|
|
|
import { Meta, Story } from '@storybook/addon-docs';
|
|
|
|
import { MyComponent } from './MyComponent';
|
|
|
|
<Meta title="img" component={MyComponent} />
|
|
|
|
<!-- Render functions are a framework specific feature to allow you control on how the component renders -->
|
|
|
|
import { Meta, Story } from '@storybook/addon-docs';
|
|
|
|
<Meta title="img" />
|
|
|
|
<!-- Assume image.png is located in the "public" directory.-->
|
|
<Story name="withAnImage">
|
|
<img src="/image.png" alt="my image" />
|
|
</Story>
|
|
``` |