mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 16:11:33 +08:00
26 lines
699 B
Plaintext
26 lines
699 B
Plaintext
```js
|
|
// YourPage.stories.js
|
|
|
|
import React from 'react';
|
|
|
|
import { Story, Meta } from '@storybook/react';
|
|
import { DocumentScreen, DocumentScreenProps } from './YourPage';
|
|
|
|
import PageLayout from './PageLayout.stories';
|
|
import DocumentHeader from './DocumentHeader.stories';
|
|
import DocumentList from './DocumentList.stories';
|
|
|
|
export default {
|
|
component: DocumentScreen,
|
|
title: 'DocumentScreen',
|
|
} as Meta;
|
|
|
|
const Template: Story<DocumentScreenProps> = (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,
|
|
};
|
|
``` |