mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 05:41:07 +08:00
26 lines
626 B
Plaintext
26 lines
626 B
Plaintext
```js
|
|
// YourPage.stories.js
|
|
|
|
import React from 'react';
|
|
|
|
import DocumentScreen from './YourPage';
|
|
|
|
//👇 Imports the required stories
|
|
import PageLayout from './PageLayout.stories';
|
|
import DocumentHeader from './DocumentHeader.stories';
|
|
import DocumentList from './DocumentList.stories';
|
|
|
|
export default {
|
|
component: DocumentScreen,
|
|
title: 'DocumentScreen',
|
|
};
|
|
|
|
const Template = (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,
|
|
};
|
|
``` |