blob: 215b1fec1da996a23104a9f8ddd98e3ce2f87c4c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
import {Component, Input} from "@angular/core";
import {FormControlModel} from "../../../../models/formControlModels/formControl.model";
import {FormGroup} from "@angular/forms";
@Component({
selector: 'checkbox-form-control',
templateUrl: './checkbox.formControl.component.html',
styleUrls : ['./checkbox.formControl.component.scss']
})
export class CheckboxFormControlComponent{
@Input() data: FormControlModel;
@Input() form: FormGroup;
}
|