saving progress, lots of charting decisions made

This commit is contained in:
2024-06-06 13:53:51 -04:00
parent bf74aeeba3
commit e88499cbaf
24 changed files with 612 additions and 87 deletions

View File

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