9 lines
203 B
JavaScript
9 lines
203 B
JavaScript
|
import React from "react";
|
||
|
|
||
|
const MapStageContext = React.createContext({
|
||
|
mapStageRef: { current: null },
|
||
|
});
|
||
|
export const MapStageProvider = MapStageContext.Provider;
|
||
|
|
||
|
export default MapStageContext;
|