---
title: 带操作的容器用法
title_en: container with operation usage
category: 2
---
展示了一个带操作的容器用法
```jsx
import { Container } from 'parkball'

ReactDOM.render(
  <Container
    title='标题2'
    operation={[
      <a href="#">操作1</a>
    ]}>
    内容部分
  </Container>,
  mountNode
)
```