mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 15:31:16 +08:00
44 lines
1.1 KiB
Plaintext
44 lines
1.1 KiB
Plaintext
```js
|
|
// ProfilePage.stories.js|jsx
|
|
|
|
import React from 'react';
|
|
|
|
import { ProfilePage } from './ProfilePage';
|
|
import { UserPosts } from './UserPosts';
|
|
|
|
//👇 Imports a specific story from a story file
|
|
import { normal as UserFriendsNormal } from './UserFriends.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: 'ProfilePage',
|
|
component: ProfilePage,
|
|
};
|
|
|
|
const ProfilePageProps = {
|
|
name: 'Jimi Hendrix',
|
|
userId: '1',
|
|
};
|
|
|
|
const context = {
|
|
//👇 We can access the `userId` prop here if required:
|
|
UserPostsContainer({ userId }) {
|
|
return <UserPosts {...UserPostsProps} />;
|
|
},
|
|
// Most of the time we can simply pass in a story.
|
|
// In this case we're passing in the `normal` story export
|
|
// from the `UserFriends` component stories.
|
|
UserFriendsContainer: UserFriendsNormal,
|
|
};
|
|
|
|
export const normal = () => {
|
|
return (
|
|
<ProfilePageContext.Provider value={context}>
|
|
<ProfilePage {...ProfilePageProps} />
|
|
</ProfilePageContext.Provider>
|
|
);
|
|
};
|
|
``` |