import React from 'react'; import { CaretRightOutlined } from '@ant-design/icons'; import { Collapse, theme } from 'antd'; const { Panel } = Collapse; const text = ` A dog is a type of domesticated animal. Known for its loyalty and faithfulness, it can be found as a welcome guest in many households across the world. `; const App: React.FC = () => { const { token } = theme.useToken(); const panelStyle = { marginBottom: 24, background: token.colorFillAlter, borderRadius: token.borderRadiusLG, border: 'none', }; return ( } style={{ background: token.colorBgContainer }} >

{text}

{text}

{text}

); }; export default App;