const Comp = forwardRef((props, ref) => { useImperativeHandle(ref, () => ({ print: () => { console.log('comp'); } }), []); return
comp
});