mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 07:21:17 +08:00
9 lines
180 B
Plaintext
9 lines
180 B
Plaintext
```js
|
|
// ProfilePageContext.js | ProfilePageContext.jsx
|
|
|
|
import { createContext } from 'react';
|
|
|
|
const ProfilePageContext = createContext();
|
|
|
|
export default ProfilePageContext;
|
|
``` |