---
category: 2
title: 简洁卡片
title_en: Simple card
---

 zh-CN

只包含内容区域。

 en-US

A simple card only containing a content area.

````jsx
import { Card } from 'parkball';

ReactDOM.render(
  <Card style={{ width: 300 }}>
    <p>Card content</p>
    <p>Card content</p>
    <p>Card content</p>
  </Card>,
  mountNode);
````
