feat(forms): add the form inputs and the form layouts pages

This commit is contained in:
Alexander Zhukov 2017-05-05 15:49:52 +03:00
parent 8649247f87
commit 3e47df7526
11 changed files with 685 additions and 47 deletions

View file

@ -0,0 +1,15 @@
import { Component } from '@angular/core';
@Component({
selector: 'ngx-form-inputs',
templateUrl: './form-inputs.component.html',
})
export class NgxFormInputsComponent {
rate1: number = 3;
rate2: number = 4;
max1: number = 5;
max2: number = 10;
}