📜  将 ref 传递给子组件 - 任何代码示例

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

代码示例1
// Dumb:
export default props =>
    

// Smart:
class Parent extends Component {
    constructor(props) {
        super(props);
    }

    setRef(ref) {
        this.inputRef = ref;
    }

    render(){
        return 
    }
}