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