This is the codeAbility Sharing Platform! Learn more about the codeAbility Sharing Platform.

Skip to content
Snippets Groups Projects
health.route.ts 224 B
Newer Older
Lukas Kaltenbrunner's avatar
Lukas Kaltenbrunner committed
import { Route } from '@angular/router';

import { HealthComponent } from './health.component';

export const healthRoute: Route = {
  path: '',
  component: HealthComponent,
  data: {
    pageTitle: 'health.title',
  },
};