storybook/docs/snippets/react/component-story-with-custom-render-function.ts.mdx
2022-07-07 19:47:29 +01:00

34 lines
827 B
Plaintext

```ts
// MyComponent.stories.ts|tsx
import React from 'react';
import type { ComponentStoryObj, ComponentMeta } from '@storybook/react';
import { Layout } from './Layout';
import { MyComponent } from './MyComponent';
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: 'MyComponent',
component: MyComponent,
} as ComponentMeta<typeof MyComponent>;
// This story uses a render function to fully control how the component renders.
export const Example: ComponentStoryObj<typeof MyComponent> = {
render: () => (
<Layout>
<header>
<h1>Example</h1>
</header>
<article>
<MyComponent />
</article>
</Layout>
),
};
```