mirror of
https://github.com/akveo/ngx-admin.git
synced 2025-12-19 00:40:12 +01:00
16 lines
264 B
TypeScript
16 lines
264 B
TypeScript
|
|
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;
|
||
|
|
|
||
|
|
}
|