mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 07:21:17 +08:00
19 lines
418 B
Plaintext
19 lines
418 B
Plaintext
```js
|
|
// ProfilePage.js|jsx
|
|
|
|
import { useContext } from 'react';
|
|
|
|
import ProfilePageContext from './ProfilePageContext';
|
|
|
|
export const ProfilePage = ({ name, userId }) => {
|
|
const { UserPostsContainer, UserFriendsContainer } = useContext(ProfilePageContext);
|
|
|
|
return (
|
|
<div>
|
|
<h1>{name}</h1>
|
|
<UserPostsContainer userId={userId} />
|
|
<UserFriendsContainer userId={userId} />
|
|
</div>
|
|
);
|
|
};
|
|
``` |