All checks were successful
Publish To Prod / deploy_and_publish (push) Successful in 35s
8 lines
153 B
JavaScript
8 lines
153 B
JavaScript
import { createContext } from 'react';
|
|
/**
|
|
* Create the React Context
|
|
*/
|
|
export const DndContext = createContext({
|
|
dragDropManager: undefined,
|
|
});
|