mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 07:01:21 +08:00
925 B
925 B
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>
);
};
import { useContext } from 'solid-js';
import ProfilePageContext from './ProfilePageContext';
export const ProfilePage = (props) => {
const { UserPostsContainer, UserFriendsContainer } = useContext(ProfilePageContext);
return (
<div>
<h1>{props.name}</h1>
<UserPostsContainer userId={props.userId} />
<UserFriendsContainer userId={props.userId} />
</div>
);
};