cjd-parkball
Version:
> 中后台业务组件库,中后台就像公园,进入需要买门票(登录),所以以 Parkball(公园球) 命名,公园内必定捕获!作为一个组件库,提供使用方法文档,方便开发者的调用
26 lines (18 loc) • 366 B
Markdown
category: 2
title: 普通提示
title_en: Normal prompt
zh-CN
信息提醒反馈。
en-US
Normal messages as feedbacks.
````jsx
import { message, Button } from 'parkball';
const info = () => {
message.info('This is a normal message');
};
ReactDOM.render(
<Button type="primary" onClick={info}>Display normal message</Button>,
mountNode);
````