``` const A = forwardref(prop,ref) => { const ref2 = useRef(); useImperativeHandle(ref,()=> ref2.current) return <div ref={ref2}/> } ```