aboutsummaryrefslogtreecommitdiffstats
path: root/vid-webpack-master/src/app/shared/components/formControls/component/number/number.formControl.component.ts
blob: bd25ded813e5e146bec2a19bfacc34a684ee06f3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
import {Component, Input} from "@angular/core";
import {FormGroup} from "@angular/forms";
import {NumberFormControl} from "../../../../models/formControlModels/numberFormControl.model";

@Component({
  selector: 'number-form-control',
  templateUrl: './number.formControl.component.html'
})
export class NumberFormControlComponent {
  @Input() data: NumberFormControl = null;
  @Input() form: FormGroup = null;
}