igroot-app-notify
v0.0.6
Published
> 应用消息通知组件
Downloads
5
Readme
App Notify 组件
应用消息通知组件
使用说明
代码演示
直接调用。
import React from 'react'
import { Button } from 'igroot'
import notify from 'igroot-app-notify'
notify({
url: 'http://test.com',
user: 100,
app: 200
})
包裹组件用法。
import React from 'react'
import { Button } from 'igroot'
import notify from 'igroot-app-notify'
const notifyElement = notify({
url: 'http://test.com',
user: 100,
app: 200
}, (
<Button
draggable
shape="circle"
type="primary"
icon="sound"
/>
))
ReactDOM.render(notifyElement, mountNode)