adding data browser
This commit is contained in:
@@ -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>[];
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user