mirror of
https://github.com/ascribe/onion.git
synced 2024-11-15 09:35:10 +01:00
12 lines
187 B
JavaScript
12 lines
187 B
JavaScript
'use strict';
|
|
|
|
let ModalMixin = {
|
|
onRequestHide(e){
|
|
if (e) {
|
|
e.preventDefault();
|
|
}
|
|
this.props.onRequestHide();
|
|
}
|
|
};
|
|
|
|
export default ModalMixin; |