import React, { useState } from 'react'; import { EditOutlined, EllipsisOutlined, SettingOutlined } from '@ant-design/icons'; import { Avatar, Card, Flex, Switch } from 'antd'; const actions: React.ReactNode[] = [ , , , ]; const App: React.FC = () => { const [loading, setLoading] = useState(true); return ( setLoading(!checked)} /> } title="Card title" description={ <>

This is the description

This is the description

} />
} title="Card title" description={ <>

This is the description

This is the description

} />
); }; export default App;