Moved stuff around, changed the way I'm storing milestones data
This commit is contained in:
15
src/components/table/table.component.ts
Normal file
15
src/components/table/table.component.ts
Normal file
@@ -0,0 +1,15 @@
|
||||
import { CommonModule } from '@angular/common';
|
||||
import { Component, Input } from '@angular/core';
|
||||
import { Header } from './header';
|
||||
|
||||
@Component({
|
||||
selector: 'fbi-table',
|
||||
standalone: true,
|
||||
imports: [CommonModule],
|
||||
templateUrl: './table.component.html',
|
||||
styleUrl: './table.component.scss',
|
||||
})
|
||||
export class TableComponent {
|
||||
@Input() header!: Header[];
|
||||
@Input() rows!: Record<string, any>[];
|
||||
}
|
||||
Reference in New Issue
Block a user