---
order: 5
title:
zh-CN: 预加载的卡片
en-US: Loading card
---
## zh-CN
数据读入前会有文本块样式。
## en-US
Shows a loading indicator while the contents of the card is being fetched.
```jsx
import React, { useState } from 'react';
import { Skeleton, Switch, Card, Avatar } from 'antd';
import { EditOutlined, EllipsisOutlined, SettingOutlined } from '@ant-design/icons';
const { Meta } = Card;
export default () => {
const [loading, setLoading] = useState(true);
const onChange = checked => {
setLoading(!checked);
};
return (
<>
}
title="Card title"
description="This is the description"
/>
,
,
,
]}
>
}
title="Card title"
description="This is the description"
/>
>
);
};
```