mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 05:31:05 +08:00
19 lines
436 B
Plaintext
19 lines
436 B
Plaintext
```js
|
|
// YourPage.js | YourPage.jsx
|
|
|
|
import React from 'react';
|
|
|
|
import { PageLayout } from './PageLayout';
|
|
import { DocumentHeader } from './DocumentHeader';
|
|
import { DocumentList } from './DocumentList';
|
|
|
|
export function DocumentScreen({ user, document, subdocuments }) {
|
|
return (
|
|
<PageLayout user={user}>
|
|
<DocumentHeader document={document} />
|
|
<DocumentList documents={subdocuments} />
|
|
</PageLayout>
|
|
);
|
|
}
|
|
```
|