mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 07:21:16 +08:00
33 lines
692 B
Plaintext
33 lines
692 B
Plaintext
```js
|
|
// MyComponent.stories.js|jsx
|
|
|
|
/** @jsx h */
|
|
import { h } from 'preact';
|
|
|
|
import { Layout } from './Layout';
|
|
|
|
import { MyComponent } from './MyComponent';
|
|
|
|
export default {
|
|
/* 👇 The title prop is optional.
|
|
* See https://storybook.js.org/docs/7.0/preact/configure/overview#configure-story-loading
|
|
* to learn how to generate automatic titles
|
|
*/
|
|
title: 'MyComponent',
|
|
component: MyComponent,
|
|
};
|
|
|
|
// This story uses a render function to fully control how the component renders.
|
|
export const Example = {
|
|
render: () => (
|
|
<Layout>
|
|
<header>
|
|
<h1>Example</h1>
|
|
</header>
|
|
<article>
|
|
<MyComponent />
|
|
</article>
|
|
</Layout>
|
|
),
|
|
};
|
|
``` |