blob: fa9a1114f1d9854f805142f995f45ea86da0322d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
import { Component, OnInit } from '@angular/core';
import { FormControl, Validators } from '@angular/forms';
@Component({
selector: 'app-hidden-layer',
templateUrl: './hidden-layer.component.html',
styleUrls: ['./hidden-layer.component.css']
})
export class HiddenLayerComponent implements OnInit {
constructor() { }
ngOnInit(): void {
}
selectFormControl = new FormControl('', Validators.required);
}
|