📅  最后修改于: 2022-03-11 15:02:03.500000             🧑  作者: Mango
constructor(props) {
super(props);
this.domElem = React.createRef();
}
getElem = () => {
return this.domElem;
}
render() {
return (
Test Elem
)
}