import { EditOutlined, EllipsisOutlined, SettingOutlined } from '@ant-design/icons'; import { Avatar, Card, Skeleton, Switch } from 'antd'; import React, { useState } from 'react'; const { Meta } = Card; const App: React.FC = () => { const [loading, setLoading] = useState(true); const onChange = (checked: boolean) => { setLoading(!checked); }; return ( <> } title="Card title" description="This is the description" /> , , , ]} > } title="Card title" description="This is the description" /> ); }; export default App;