UNPKG
cjd-parkball
Version:
latest (0.7.33)
0.7.33
> 中后台业务组件库,中后台就像公园,进入需要买门票(登录),所以以 Parkball(公园球) 命名,公园内必定捕获!作为一个组件库,提供使用方法文档,方便开发者的调用
cjd-parkball
/
src
/
components
/
alert
/
demo
/
close-text.md
16 lines
(12 loc)
•
283 B
Markdown
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
---
category:
2
title:
自定义关闭
title_en:
Text
---
可以自定义关闭,自定义的文字会替换原先的关闭
`Icon`。
````jsx
import
{
Alert
}
from
'parkball'
;
ReactDOM.render(
<Alert
message="Info
Text"
type="info"
closeText="Close
Now"
/>,
mountNode);
````