Имеется следующий код, компонент высшего порядка, который возвращает другой компонент, в встроенном методе,
componentwillreceiveprops есть данные возвращаемые console.log, каким образом они были получены из Component?
import React fromt 'react';
function logProps(Component){
return class extends React.Component{
componentWillRecieveProps(nextProps){
console.log('prevProps', this.props); // ???
console.log('prevProps', nextprops);//???
render(){
return <Component {...this.props} />
}
}
}
}
export default logProps;