UNPKG

react-resizable-panels

Version:

React components for resizable panel groups/layouts

11 lines (10 loc) 255 B
export function getPanelElement( id: string, scope: ParentNode | HTMLElement = document ): HTMLElement | null { const element = scope.querySelector(`[data-panel-id="${id}"]`); if (element) { return element as HTMLElement; } return null; }