mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 05:51:06 +08:00
21 lines
439 B
Plaintext
21 lines
439 B
Plaintext
```ts
|
|
// Page.stories.tsx
|
|
|
|
import React from 'react';
|
|
import { Story, Meta } from '@storybook/react/types-6-0';
|
|
|
|
import { Page, PageProps } from './Page';
|
|
import * as HeaderStories from './Header.stories';
|
|
|
|
export default {
|
|
title: 'Page',
|
|
component: Page,
|
|
} as Meta;
|
|
|
|
const Template: Story<PageProps> = (args) => <Page {...args} />;
|
|
|
|
export const LoggedIn = Template.bind({});
|
|
LoggedIn.args = {
|
|
...HeaderStories.LoggedIn.args,
|
|
};
|
|
``` |