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

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

import { LogsComponent } from './logs.component';

export const logsRoute: Route = {
  path: '',
  component: LogsComponent,
  data: {
    pageTitle: 'logs.title',
  },
};