[react] 使用高阶组件(HOC)实现一个loading组件
function HOC(wrappedComponent) {
return class extends React.Component {
render() {
if(!this.props.data) {
return (<div>loading</div> )
}
return <wrappedComponent {...this.props}/>
}
}
}
Most helpful comment