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