index.tsx 381 Bytes
import { QxSearch, QxTable } from '@qx/view-render';
import _ from 'lodash';
export * from '@qx/view-render';
import './index.less';

const QxSearchForm = (props: any) => {
  const SYSTEM_WIDGETS = qx.getModuleData()?.systemWidgets;
  const widgets = { ...SYSTEM_WIDGETS, ...(props.widgets || {}) };
  return <QxSearch {...props} widgets={widgets} />;
};

export { QxSearchForm };