Files
hertzbeat/web-app/src/app/routes/dashboard/dashboard.component.ts

9 lines
244 B
TypeScript
Raw Normal View History

import { ChangeDetectionStrategy, Component } from '@angular/core';
@Component({
selector: 'app-dashboard',
templateUrl: './dashboard.component.html',
changeDetection: ChangeDetectionStrategy.OnPush
})
export class DashboardComponent {}