You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
442 B
19 lines
442 B
6 years ago
|
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;
|