我有一个无法编辑的 React 组件InputComponent,我想获得对其内部 div 之一的引用。(例如为了专注于输入字段)。
const RefsExamplePage = () => {
return (
<div>
<div>
<InputComponent
title="Test component"
></InputComponent>
</div>
</div>
)
}
export default RefsExamplePage;
我如何实现这一目标?