1
0
Fork 0
akkoma-fe/src/components/dialog_modal/dialog_modal.js

15 lines
202 B
JavaScript

const DialogModal = {
props: {
darkOverlay: {
default: true,
type: Boolean
},
onCancel: {
default: () => {},
type: Function
}
}
}
export default DialogModal