export interface TabItem {
    text: string;
    selected: boolean;
    items: any;
}
