UNPKG

react-native-expo-kanban

Version:
4 lines (3 loc) 175 B
import { createContext, useContext } from 'react'; export const DragContextValue = createContext(undefined); export const useDragContext = () => useContext(DragContextValue);