📌  相关文章
📜  找不到名称 'RefObject' - Javascript 代码示例

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

代码示例1
class TestApp extends React.Component {
    private stepInput: React.RefObject;
    constructor(props) {
        super(props);
        this.stepInput = React.createRef();
    }
    render() {
        return ;
    }
}