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