[748a59]: / nih-ct-protocol-ui / src / app / search-criteria / search-criteria.component.ts

Download this file

20 lines (13 with data), 376 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
import { Component, OnInit } from '@angular/core';
import { CRITERIAS } from '../mock-criteria';
@Component({
selector: 'app-search-criteria',
templateUrl: './search-criteria.component.html',
styleUrls: ['./search-criteria.component.css']
})
export class SearchCriteriaComponent implements OnInit {
criterias = CRITERIAS;
constructor() {}
ngOnInit() {
}
}