UNPKG

cjd-parkball

Version:

> 中后台业务组件库,中后台就像公园,进入需要买门票(登录),所以以 Parkball(公园球) 命名,公园内必定捕获!作为一个组件库,提供使用方法文档,方便开发者的调用

58 lines (47 loc) 1.14 kB
--- category: 2 title: 包含子组件 title_en: Contains sub component --- zh-CN 加载占位图包含子组件。 en-US Skeleton contains sub component. ````jsx import { Skeleton, Button } from 'parkball'; class Demo extends React.Component { state = { loading: false, }; showSkeleton = () => { this.setState({ loading: true }); setTimeout(() => { this.setState({ loading: false }); }, 3000); }; render() { return ( <div className="article"> <Skeleton loading={this.state.loading}> <div> <h4>Ant Design, a design language</h4> <p>We supply a series of design principles, practical patterns and high quality design resources (Sketch and Axure), to help people create their product prototypes beautifully and efficiently.</p> </div> </Skeleton> <Button onClick={this.showSkeleton} disabled={this.state.loading}> Show Skeleton </Button> </div> ); } } ReactDOM.render(<Demo />, mountNode); ```` <style> .article h4 { margin-bottom: 16px; } .article button { margin-top: 16px; } </style>