mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 00:21:24 +08:00
25 lines
632 B
Plaintext
25 lines
632 B
Plaintext
```js
|
|
// pages/profile.js|jsx
|
|
|
|
import React from 'react';
|
|
|
|
import ProfilePageContext from './ProfilePageContext';
|
|
import { ProfilePageContainer } from './ProfilePageContainer';
|
|
import { UserPostsContainer } from './UserPostsContainer';
|
|
import { UserFriendsContainer } from './UserFriendsContainer';
|
|
|
|
//👇 Ensure that your context value remains referentially equal between each render.
|
|
const context = {
|
|
UserPostsContainer,
|
|
UserFriendsContainer,
|
|
};
|
|
|
|
export const AppProfilePage = () => {
|
|
return (
|
|
<ProfilePageContext.Provider value={context}>
|
|
<ProfilePageContainer />
|
|
</ProfilePageContext.Provider>
|
|
);
|
|
};
|
|
```
|