import { observer } from 'mobx-react'; import { WeaDialog, } from 'ecCom'; import Customization from './Customization'; @observer export default class SearchCustomDialog extends React.Component { constructor(props) { super(props); } render() { const { store } = this.props, { SEARCHDIALOG, searchDialog } = store; return ( ); } }