UNPKG
@teamix/pro-action
Version:
beta (2.0.0-beta.1)
latest (2.0.0-beta.1)
2.0.0-beta.1
action组件
@teamix/pro-action
/
es
/
drawer.js
7 lines
•
214 B
JavaScript
View Raw
1
2
3
4
5
6
7
import
useDialogAction
from
"./dialog"
;
export
function
useDrawerAction
(
action, context
) {
return
useDialogAction
(
Object
.
assign
({
dialogType
:
'drawer'
}, action), context); }
export
default
useDrawerAction;