cjd-parkball
Version:
> 中后台业务组件库,中后台就像公园,进入需要买门票(登录),所以以 Parkball(公园球) 命名,公园内必定捕获!作为一个组件库,提供使用方法文档,方便开发者的调用
44 lines (33 loc) • 734 B
Markdown
---
category: 2
title: 其他提示类型
title_en: Other types of message
---
zh-CN
包括成功、失败、警告。
en-US
Messages of success, error and warning types.
````jsx
import { message, Button } from 'parkball';
const success = () => {
message.success('This is a message of success');
};
const error = () => {
message.error('This is a message of error');
};
const warning = () => {
message.warning('This is message of warning');
};
ReactDOM.render(
<div>
<Button onClick={success}>Success</Button>
<Button onClick={error}>Error</Button>
<Button onClick={warning}>Warning</Button>
</div>,
mountNode);
````
<style>
#components-message-demo-other .ant-btn {
margin-right: 8px;
}
</style>