@gorhom/bottom-sheet
Version:
A performant interactive bottom sheet with fully configurable options 🚀
12 lines (11 loc) • 360 B
JavaScript
import { useContext } from 'react';
import { BottomSheetContext } from '../contexts/external';
export const useBottomSheet = () => {
const context = useContext(BottomSheetContext);
if (context === null) {
throw "'useBottomSheet' cannot be used out of the BottomSheet!";
}
return context;
};
//# sourceMappingURL=useBottomSheet.js.map
;