mirror of
https://github.com/akveo/ngx-admin.git
synced 2025-12-28 21:28:50 +01:00
13 lines
295 B
TypeScript
13 lines
295 B
TypeScript
import { Component } from '@angular/core';
|
|
|
|
@Component({
|
|
selector: 'ngx-form-inputs',
|
|
styleUrls: ['./form-inputs.component.scss'],
|
|
templateUrl: './form-inputs.component.html',
|
|
})
|
|
export class FormInputsComponent {
|
|
|
|
starRate = 2;
|
|
heartRate = 4;
|
|
radioGroupValue = 'This is value 2';
|
|
}
|