---
category: 2
title: 基本
title_en: Basic
---

最简单的用法，适用于简短的警告提示。

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

ReactDOM.render(
  <Alert message="Success Text" type="success" />,
  mountNode);
````

<style>
.ant-alert {
  margin-bottom: 16px;
}
</style>
