---
order: 4
title:
zh-CN: 列表
en-US: List
---
## zh-CN
在列表组件中使用加载占位符。
## en-US
Use skeleton in list component.
```jsx
import { Skeleton, Switch, List, Avatar } from 'antd';
import { StarOutlined, LikeOutlined, MessageOutlined } from '@ant-design/icons';
const listData = [];
for (let i = 0; i < 3; i++) {
listData.push({
href: 'https://ant.design',
title: `ant design part ${i}`,
avatar: 'https://zos.alipayobjects.com/rmsportal/ODTLcjxAfvqbxHnVXCYX.png',
description:
'Ant Design, a design language for background applications, is refined by Ant UED Team.',
content:
'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.',
});
}
const IconText = ({ icon, text }) => (
{React.createElement(icon, { style: { marginRight: 8 } })}
{text}
);
class App extends React.Component {
state = {
loading: true,
};
onChange = checked => {
this.setState({ loading: !checked });
};
render() {
const { loading } = this.state;
return (
<>
(
,
,
,
]
}
extra={
!loading && (
)
}
>
}
title={{item.title}}
description={item.description}
/>
{item.content}
)}
/>
>
);
}
}
ReactDOM.render(, mountNode);
```