diff options
| author | dave <starpumadev@gmail.com> | 2019-04-08 21:04:59 -0400 |
|---|---|---|
| committer | dave <starpumadev@gmail.com> | 2019-04-08 21:04:59 -0400 |
| commit | d3218807b4b363a09795857f9f366ad2a40d7d07 (patch) | |
| tree | 35b364175d367b28e0411548cd92400934ce1e4f /src/components/dialog_modal/dialog_modal.js | |
| parent | b0da32fea20b53d7dc63222c4e0ec3e2c62e3081 (diff) | |
| parent | 546ced43d9edbaf176f71b010aadc11bf7e5e851 (diff) | |
#436 - merge develop
Diffstat (limited to 'src/components/dialog_modal/dialog_modal.js')
| -rw-r--r-- | src/components/dialog_modal/dialog_modal.js | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/components/dialog_modal/dialog_modal.js b/src/components/dialog_modal/dialog_modal.js new file mode 100644 index 00000000..f14e3fe9 --- /dev/null +++ b/src/components/dialog_modal/dialog_modal.js @@ -0,0 +1,14 @@ +const DialogModal = { + props: { + darkOverlay: { + default: true, + type: Boolean + }, + onCancel: { + default: () => {}, + type: Function + } + } +} + +export default DialogModal |
