--- order: 2 title: zh-CN: 面板嵌套 en-US: Nested panel --- ## zh-CN 嵌套折叠面板。 ## en-US `Collapse` is nested inside the `Collapse`. ````jsx import { Collapse } from 'antd'; const Panel = Collapse.Panel; function callback(key) { console.log(key); } 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. `; ReactDOM.render(

{text}

{text}

{text}

, mountNode); ````