mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 06:41:11 +08:00
34 lines
827 B
Plaintext
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>
|
|
),
|
|
};
|
|
``` |