mirror of
https://github.com/ant-design/ant-design.git
synced 2025-01-10 05:58:39 +08:00
23 lines
344 B
Markdown
23 lines
344 B
Markdown
---
|
|
order: 4
|
|
title: 预加载的卡片
|
|
---
|
|
|
|
数据读入前会有文本块样式。
|
|
|
|
````jsx
|
|
import { Card } from 'antd';
|
|
|
|
const App = React.createClass({
|
|
render() {
|
|
return (
|
|
<Card loading title="卡片标题" style={{ width: 300 }}>
|
|
Whatever content
|
|
</Card>
|
|
);
|
|
},
|
|
});
|
|
|
|
ReactDOM.render(<App />, mountNode);
|
|
````
|