ant-design/components/card/demo/loading.md
2016-04-10 15:38:52 +08:00

251 B

order title
5 预加载的卡片

数据读入前会有文本块样式。

import { Card } from 'antd';

ReactDOM.render(
  <Card loading title="卡片标题" style={{ width: 300 }}>
    Whatever content
  </Card>
, mountNode);