report-card.component.ts 382 B

123456789101112131415161718
  1. import { Component, Input } from '@angular/core';
  2. import { Report } from '../tab1/tab1.page';
  3. @Component({
  4. selector: 'app-report-card',
  5. templateUrl: './report-card.component.html',
  6. styleUrls: ['./report-card.component.scss'],
  7. standalone: true,
  8. })
  9. export class ReportCardComponent {
  10. @Input() report!: Report;
  11. constructor() { }
  12. ngOnInit() {}
  13. }