pleroma-fe/src/components/dialog_modal/dialog_modal.js

15 lines
202 B
JavaScript
Raw Normal View History

2019-02-18 15:49:32 +01:00
const DialogModal = {
props: {
darkOverlay: {
default: true,
type: Boolean
},
onCancel: {
default: () => {},
type: Function
}
}
}
export default DialogModal