3
React.cloneElement와 this.props.children을 언제 사용해야합니까?
나는 여전히 React에서 멍청한 사람이고 인터넷의 많은 예제에서 혼란스러워하는 자식 요소를 렌더링하는이 변형을 봅니다. 일반적으로 나는 이것을 본다 : class Users extends React.Component { render() { return ( <div> <h2>Users</h2> {this.props.children} </div> ) } } 그러나 다음과 같은 예가 있습니다. <ReactCSSTransitionGroup component="div" transitionName="example" transitionEnterTimeout={500} transitionLeaveTimeout={500} > {React.cloneElement(this.props.children, { key: this.props.location.pathname …
118
reactjs