```ts // YourPage.stories.ts import DocumentScreen from './YourPage.vue'; //👇 Imports the required stories import * as PageLayoutStories from './PageLayout.stories'; import * as DocumentHeaderStories from './DocumentHeader.stories'; import * as DocumentListStories from './DocumentList.stories'; import type { Meta, StoryObj } from '@storybook/vue'; const meta: Meta = { /* 👇 The title prop is optional. * See https://storybook.js.org/docs/7.0/vue/configure/overview#configure-story-loading * to learn how to generate automatic titles */ title: 'DocumentScreen', component: DocumentScreen, }; export default meta; type Story = StoryObj; /* *👇 Render functions are a framework specific feature to allow you control on how the component renders. * See https://storybook.js.org/docs/7.0/vue/api/csf * to learn how to use render functions. */ export const Primary: Story = { render: (args, { argTypes }) => ({ components: { DocumentScreen }, props: Object.keys(argTypes), template: '', }), args: { user: PageLayoutStories.Simple.args.user, document: DocumentHeaderStories.Simple.args.document, subdocuments: DocumentListStories.Simple.args.documents, }, }; ```