---
order: 0
title: 折叠面板
---

````jsx
import { Collapse } from 'b-rc';

ReactDOM.render(
  
  <Collapse trigger="Start here">
      <p>This is the collapsible content. It can be any element or React component you like.</p>
      <p>It can even be another Collapsible component. Check out the next section!</p>
  </Collapse>
, mountNode);
````



