import {WidgetType, Vertical, Left, Label, Button} from '@ui/index'; import Title from '../right_title/right.title.component'; const className = 'fr.component.right.detail'; const Widget: WidgetType = { render() { return { type: Vertical, cls:'right-content', items: [ { type: Title, }, ], }; }, }; BI.shortcut(className, BI.inherit(BI.Widget, Widget)); export default className;