Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | 1x | import { ChangeDetectionStrategy, Component } from '@angular/core';
import { RouterLink } from '@angular/router';
/**
* Application menu sidebar for logged in vies. Contains links to primary application features, user
* account features should be linked from the accounts menu in the header.
*/
@Component({
selector: 'app-sidebar',
imports: [ RouterLink ],
templateUrl: './sidebar.component.html',
styleUrl: './sidebar.component.scss',
changeDetection: ChangeDetectionStrategy.OnPush,
})
export class SidebarComponent {}
|