123456789101112131415161718 |
- import { Component, Input } from '@angular/core';
- import { Report } from '../tab1/tab1.page';
- @Component({
- selector: 'app-report-card',
- templateUrl: './report-card.component.html',
- styleUrls: ['./report-card.component.scss'],
- standalone: true,
- })
- export class ReportCardComponent {
-
- @Input() report!: Report;
- constructor() { }
- ngOnInit() {}
- }
|