storybook/docs/snippets/react/page-story-with-args-composition.ts.mdx
2021-11-09 01:41:54 +00:00

33 lines
948 B
Plaintext

```ts
// YourPage.stories.ts|tsx
import React from 'react';
import { ComponentStory, ComponentMeta } from '@storybook/react';
import { DocumentScreen } from './YourPage';
import PageLayout from './PageLayout.stories';
import DocumentHeader from './DocumentHeader.stories';
import DocumentList from './DocumentList.stories';
export default {
/* 👇 The title prop is optional.
* See https://storybook.js.org/docs/react/configure/overview#configure-story-loading
* to learn how to generate automatic titles
*/
title: 'DocumentScreen',
component: DocumentScreen,
title: 'DocumentScreen',
} as ComponentMeta<typeof DocumentScreen>;
const Template: ComponentStory<typeof DocumentScreen> = (args) => <DocumentScreen {...args} />;
export const Simple = Template.bind({});
Simple.args = {
user: PageLayout.Simple.args.user,
document: DocumentHeader.Simple.args.document,
subdocuments: DocumentList.Simple.args.documents,
};
```