index.ts
325 Bytes
import React from 'react';
import QxOrgSelectorInput from './src/input';
import QxOrgSelectorDialog from './src/dialog';
interface QxOrgSelectorType extends React.FC {
Dialog: typeof QxOrgSelectorDialog;
}
export const QxOrgSelector = QxOrgSelectorInput as QxOrgSelectorType;
QxOrgSelector.Dialog = QxOrgSelectorDialog;