4a365039ebd00b73d7a5d29956a7c3ae5a3dd315
[portal/sdk.git] /
1 import { Component, OnInit, Input } from '@angular/core';
2
3 @Component({
4   selector: 'app-form-fields',
5   templateUrl: './form-fields.component.html',
6   styleUrls: ['./form-fields.component.css']
7 })
8 export class FormFieldsComponent implements OnInit {
9
10   @Input("reportId") reportId1 : string;
11
12   constructor() { }
13
14   ngOnInit() {
15   }
16
17 }