import { Component, OnInit, Input, Output, EventEmitter } from '@angular/core'; import { FormBuilder, FormGroup, Validators, FormControl } from '@angular/forms'; @Component({ selector: 'cm-form-doc-7', templateUrl: './form-doc-7.component.html', styleUrls: ['./form-doc-7.component.css'] }) export class FormDoc7Component implements OnInit { constructor() { } ngOnInit() { } }