storybook/docs/snippets/react/component-story-with-custom-render-function.js.mdx
2021-10-25 19:46:51 +01:00

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>
),
};
```