import { useContext } from "react"; import { getContext } from "../utils"; import { Context } from "../components/transform-wrapper"; import { ReactZoomPanPinchRef } from "../models"; const useTransformContext = (): ReactZoomPanPinchRef => { const libraryContext = useContext(Context); if (!libraryContext.contextInstance) { throw new Error("Transform context mus be placed inside TransformWrapper"); } return getContext(libraryContext.contextInstance); }; export default useTransformContext;