mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 06:51:19 +08:00
23 lines
471 B
Plaintext
23 lines
471 B
Plaintext
```js
|
|
// Page.stories.js|jsx
|
|
|
|
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/7.0/react/configure/overview#configure-story-loading
|
|
* to learn how to generate automatic titles
|
|
*/
|
|
title: 'Page',
|
|
component: Page,
|
|
};
|
|
|
|
export const LoggedIn = {
|
|
args: {
|
|
...HeaderStories.LoggedIn.args,
|
|
},
|
|
};
|
|
``` |