28 lines
344 B
JavaScript
28 lines
344 B
JavaScript
import {
|
|
observer
|
|
} from 'mobx-react';
|
|
import {
|
|
WeaDialog,
|
|
} from 'ecCom';
|
|
|
|
@observer
|
|
export default class SearchCustomDialog extends React.Component {
|
|
constructor(props) {
|
|
super(props);
|
|
}
|
|
|
|
render() {
|
|
const {
|
|
DIALOG,
|
|
dialog
|
|
} = this.props
|
|
|
|
return (
|
|
<WeaDialog
|
|
{...DIALOG}
|
|
{...dialog}
|
|
>
|
|
</WeaDialog>
|
|
);
|
|
}
|
|
} |