Skip to content

Instantly share code, notes, and snippets.

View raghavdhingra's full-sized avatar
😄
Awesome

Raghav Dhingra raghavdhingra

😄
Awesome
View GitHub Profile
export const dragElement = (
elementToDrag: HTMLDivElement,
dragButtonRef: HTMLButtonElement,
options?: {
mouseUpCallback?: (e: MouseEvent) => void;
isInScreenDrag?: boolean;
screenElement?: HTMLElement | null;
isDragFullElementOnScreen?: boolean;
}
) => {