如何将这个引用用法复制到useRef?

时间:2020-06-06 10:26:36

标签: reactjs react-hooks ref

我要重写这个:

  componentDidMount() {
    this.setState({ container: this.containerRef });
  }

   <Table
      scrollElement={container}
    >
  <div
      ref={ref => (this.containerRef = ref)}
     />
    );

基本上,我有一个表组件,它接受scrollElement,这是对其下面div的引用,如何使用useRef编写完全相同的东西?

0 个答案:

没有答案