import {Component, Input} from '@angular/core'; import {Need} from '../../models/Need'; @Component({ selector: 'app-mini-need-list', standalone: false, templateUrl: './mini-need-list.component.html', styleUrl: './mini-need-list.component.css' }) export class MiniNeedListComponent { @Input() needList?: Need[] @Input() label?: string @Input() url?: string constructor( ) {} }