UNPKG

react-native-reorderable-list

Version:

Reorderable list for React Native applications, powered by Reanimated

9 lines 299 B
import { useContext as useReactContext } from 'react'; export const useContext = context => { const value = useReactContext(context); if (value !== undefined) { return value; } throw 'Please consume ReorderableList context within its provider.'; }; //# sourceMappingURL=useContext.js.map