nycJSorg/angular-presentation

View on GitHub
apps/codelab/src/app/components/angular-routes/angular-routes.component.ts

Summary

Maintainability
A
0 mins
Test Coverage
import { ChangeDetectionStrategy, Component, Inject } from '@angular/core';
import { MENU_ROUTES } from '../../common';

@Component({
  selector: 'codelab-angular-routes',
  templateUrl: 'angular-routes.component.html',
  styleUrls: ['angular-routes.component.scss'],
  changeDetection: ChangeDetectionStrategy.OnPush
})
export class AngularRoutesComponent {
  constructor(@Inject(MENU_ROUTES) readonly menuRoutes) {}
}