📜  功能组件中的 ref - 任何代码示例

📅  最后修改于: 2022-03-11 14:57:06.684000             🧑  作者: Mango

代码示例2
function MyFunctionComponent() {  return ;
}

class Parent extends React.Component {
  constructor(props) {
    super(props);
    this.textInput = React.createRef();  }
  render() {
    // This will *not* work!
    return (
          );
  }
}