我要重写这个:
componentDidMount() {
this.setState({ container: this.containerRef });
}
<Table
scrollElement={container}
>
<div
ref={ref => (this.containerRef = ref)}
/>
);
基本上,我有一个表组件,它接受scrollElement,这是对其下面div的引用,如何使用useRef编写完全相同的东西?