export interface Tab {
    id: string;
    type: string;
    title: string;
    uiSchema?: object;
    coms?: Tab[];
}
