8 lines
191 B
JavaScript
8 lines
191 B
JavaScript
import { createContext } from 'react';
|
|
/**
|
|
* Create the React Context
|
|
*/ export const DndContext = createContext({
|
|
dragDropManager: undefined
|
|
});
|
|
|
|
//# sourceMappingURL=DndContext.js.map
|