blob: 18b176bb3238aa21621ae8dd400181db1d23dfae (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
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(
) {}
}
|