mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 23:41:11 +08:00
26 lines
558 B
Plaintext
26 lines
558 B
Plaintext
```js
|
|
// Page.stories.js|jsx
|
|
|
|
import React from 'react';
|
|
|
|
import { Page } from './Page';
|
|
|
|
//👇 Imports all Header stories
|
|
import * as HeaderStories from './Header.stories';
|
|
|
|
export default {
|
|
/* 👇 The title prop is optional.
|
|
* See https://storybook.js.org/docs/react/configure/overview#configure-story-loading
|
|
* to learn how to generate automatic titles
|
|
*/
|
|
title: 'Page',
|
|
component: Page,
|
|
};
|
|
|
|
const Template = (args) => <Page {...args} />;
|
|
|
|
export const LoggedIn = Template.bind({});
|
|
LoggedIn.args = {
|
|
...HeaderStories.LoggedIn.args,
|
|
};
|
|
``` |