import $ from 'jquery'; import { omit } from 'lodash'; import React from 'react'; export default function DomComponent(props: React.HTMLAttributes & { childDom: HTMLElement }) { const ref = React.useRef(); React.useEffect(() => { ref.current.appendChild(props.childDom); return () => { $(ref.current).empty(); }; }, []); return
; }