aboutsummaryrefslogtreecommitdiffstats
path: root/vid-webpack-master/src/app/shared/components/formControls/component/checkbox/checkbox.formControl.component.ts
blob: f9ba48308a577bdd7ed50e1d0466f3c5b1d3d7ea (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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'
})
export class CheckboxFormControlComponent{
  @Input() data: FormControlModel;
  @Input() form: FormGroup;

}