aboutsummaryrefslogtreecommitdiff
path: root/frontend/src/app/_elements/hidden-layer/hidden-layer.component.ts
diff options
context:
space:
mode:
authorTAMARA JERINIC <tamara.jerinic@gmail.com>2022-04-25 00:56:45 +0200
committerTAMARA JERINIC <tamara.jerinic@gmail.com>2022-04-25 00:56:45 +0200
commitaee2cd43578a255f5a0e346ac8955f663a673cca (patch)
treebbacd9840b80dd3f85f28743db977f0a15c87655 /frontend/src/app/_elements/hidden-layer/hidden-layer.component.ts
parent8497bc988f2a5cbca10ee6870708bd4c06c24dd2 (diff)
Ažurirana komponenta form-model, dodata komponenta hidden-layer.
Diffstat (limited to 'frontend/src/app/_elements/hidden-layer/hidden-layer.component.ts')
-rw-r--r--frontend/src/app/_elements/hidden-layer/hidden-layer.component.ts16
1 files changed, 16 insertions, 0 deletions
diff --git a/frontend/src/app/_elements/hidden-layer/hidden-layer.component.ts b/frontend/src/app/_elements/hidden-layer/hidden-layer.component.ts
new file mode 100644
index 00000000..fa9a1114
--- /dev/null
+++ b/frontend/src/app/_elements/hidden-layer/hidden-layer.component.ts
@@ -0,0 +1,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);
+}