mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 07:21:17 +08:00
19 lines
394 B
Plaintext
19 lines
394 B
Plaintext
```js
|
|
// MyComponent.stories.js|jsx|ts|tsx
|
|
|
|
import { MyComponent } from './MyComponent';
|
|
|
|
export default {
|
|
component: MyComponent,
|
|
};
|
|
|
|
// This story uses a render function to fully control how the component renders.
|
|
export const ExampleWithRenderFunction = {
|
|
render: () => (
|
|
<div>
|
|
<h1>I'm a component with a custom render function</h1>
|
|
<MyComponent />
|
|
</div>
|
|
),
|
|
};
|
|
``` |