aboutsummaryrefslogtreecommitdiff
path: root/ufund-ui/src/app/components/mini-need-list/mini-need-list.component.ts
blob: c909ae6cc856bfec0bce75e88c6268f8615c59c0 (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() jtitle?: string
    @Input() url?: string

    constructor(

    ) {}
}