import React, { useEffect, useRef } from 'react'; import type { PropPanelWidgetProps } from '@pdfme-tables/common'; type Props = PropPanelWidgetProps & { widget: (props: PropPanelWidgetProps) => void; }; const WidgetRenderer = (props: Props) => { const { widget, ...otherProps } = props; const ref = useRef(null); useEffect(() => { if (ref.current) { ref.current.innerHTML = ''; widget({ ...otherProps, rootElement: ref.current }); } return () => { if (ref.current) { ref.current.innerHTML = ''; } }; }, [props.activeSchema]); return
; }; export default WidgetRenderer;