import {WidgetType, Layout, Label, HorizotalAdapt, Vtape} from '@ui/index'; const className = 'dec.dcm.component.right.nothing'; const Widget: WidgetType = { render() { return { type: HorizotalAdapt, top: 200, items: [{ type: Vtape, width: 260, height: 150, items: [ { el: { type: Layout, cls: 'data-connection-background', }, height: 130, }, { type: Label, text: BI.i18nText('Dec-Dcm_Connection_Plase_Add_One'), }, ], }], }; }, }; BI.shortcut(className, BI.inherit(BI.Widget, Widget)); export default className;