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({ changeDetection: ChangeDetectionStrategy.OnPush, imports: [ RouterLink ], selector: 'app-sidebar', styleUrl: './sidebar.component.scss', templateUrl: './sidebar.component.html', }) export class SidebarComponent {} |