📜  如何获得父母的 ref 反应 - Javascript 代码示例

📅  最后修改于: 2022-03-11 15:02:03.500000             🧑  作者: Mango

代码示例1
constructor(props) {
    super(props);
    this.domElem = React.createRef();
}

getElem = () => {
    return this.domElem;
}

render() {
    return (
       
Test Elem
) }