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