Project

General

Profile

1

    
2
import { Component, ViewChild, OnInit } from '@angular/core';
3
import { ActivatedRoute } from '@angular/router';
4
// import{ClaimsAdminModule} from 'ng-openaire-library';
5
@Component({
6
    selector: 'claims',
7
    template: `    <claims-admin>
8
    </claims-admin>`,
9
})
10

    
11
export class ClaimsComponent implements OnInit {
12

    
13

    
14
    ngOnInit() {
15

    
16
    }
17

    
18
    constructor(private route: ActivatedRoute) {}
19

    
20

    
21

    
22
}
    (1-1/1)