cic-staff-client/src/app/shared/sidebar/sidebar.component.ts
Spencer Ofwiti 9644d43682 Add change detection strategy.
- Change to onPush change detection strategy.
- Refactor logging provider.
2021-03-14 11:23:20 +03:00

17 lines
354 B
TypeScript

import {ChangeDetectionStrategy, Component, OnInit} from '@angular/core';
@Component({
selector: 'app-sidebar',
templateUrl: './sidebar.component.html',
styleUrls: ['./sidebar.component.scss'],
changeDetection: ChangeDetectionStrategy.OnPush
})
export class SidebarComponent implements OnInit {
constructor() { }
ngOnInit(): void {
}
}