argos/dmp-frontend/src/app/form/dynamic-form-section/dynamic-form-section.ts

19 lines
478 B
TypeScript
Raw Normal View History

import { FormGroup } from '@angular/forms';
import { Section } from '../../entities/model/section';
import { Component, Input, OnInit } from '@angular/core';
@Component({
selector: 'df-section',
templateUrl: './dynamic-form-section.html',
})
export class DynamicFormSectionComponent implements OnInit{
@Input() section: Section
@Input() form: FormGroup;
@Input() pathName:string;
2017-12-05 17:56:21 +01:00
@Input() path:string;
constructor(){}
ngOnInit(){
}
}