mirror of
https://github.com/akveo/ngx-admin.git
synced 2026-01-11 12:08:51 +01:00
10 lines
237 B
TypeScript
10 lines
237 B
TypeScript
import { Component } from '@angular/core';
|
|
|
|
@Component({
|
|
selector: 'ngx-dashboard',
|
|
styleUrls: ['./dashboard.component.scss'],
|
|
templateUrl: './dashboard.component.html',
|
|
})
|
|
export class DashboardComponent {
|
|
currentValue = 0.5;
|
|
}
|