7 lines
145 B
React
7 lines
145 B
React
|
|
// GlobalStateContext.js
|
||
|
|
import { createContext } from 'react';
|
||
|
|
|
||
|
|
const GlobalStateContext = createContext();
|
||
|
|
|
||
|
|
export default GlobalStateContext;
|