Code Review
/
portal
/
sdk.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
4c603af6f69ab92593ea023ad82ee1ab6947ad26
[portal/sdk.git]
/
1
import { Component, OnInit, Input } from '@angular/core';
2
3
@Component({
4
selector: 'app-log',
5
templateUrl: './log.component.html',
6
styleUrls: ['./log.component.css']
7
})
8
export class LogComponent implements OnInit {
9
10
@Input("reportId") reportId1 : string;
11
12
13
constructor() { }
14
15
ngOnInit() {
16
}
17
18
}