aboutsummaryrefslogtreecommitdiff
path: root/src/components/modal/modal.js
blob: 8daa27a3ffaa06d7a700baf43d5482978cd51506 (plain)
1
2
3
4
5
6
7
8
9
10
const Modal = {
  props: {
    isOpen: {
      type: Boolean,
      default: true
    }
  }
}

export default Modal