react loader component:一个React高阶组件可调度动作并呈现loadingerror状态 源码
React加载器组件 一个React高阶组件,它会在安装时触发一些Promise,并显示一个加载组件,直到Promise完成为止。 用法 import ReactLoader from ' react-loader-component ' ; const MyComponent = ReactLoader ({ loadingComponent : props => (< p>Loading), errorComponent : props => (< p>There was an error: { JSON . stringify ( props . data ) } ), load : ( props ) => { // Do some async loading here // Return a Pr
用户评论