adding data browser

This commit is contained in:
2024-09-08 22:11:51 -04:00
parent e88499cbaf
commit 224e6388c1
48 changed files with 1037 additions and 75 deletions

View File

@@ -1,7 +1,6 @@
import { CommonModule } from '@angular/common';
import { Component, Input } from '@angular/core';
import { Header } from './header';
import { Observable } from 'rxjs';
import { Header } from '../../models/header';
@Component({
selector: 'fbi-table',
@@ -11,6 +10,6 @@ import { Observable } from 'rxjs';
styleUrl: './table.component.scss',
})
export class TableComponent {
@Input() header!: Header[];
@Input() rows!: Observable<Record<string, any>[]>;
@Input() headers!: Header[];
@Input() rows!: Record<string, any>[];
}