feat(injectionToken): create new challenge on injectionToken

This commit is contained in:
thomas
2023-10-18 17:00:04 +02:00
parent 9aa77fbdb2
commit 21b0c9414d
27 changed files with 385 additions and 7 deletions

View File

@@ -0,0 +1,12 @@
import { ApplicationConfig } from '@angular/core';
import { provideRouter } from '@angular/router';
export const appConfig: ApplicationConfig = {
providers: [
provideRouter([
{ path: '', pathMatch: 'full', redirectTo: 'video' },
{ path: 'video', loadComponent: () => import('./video.component') },
{ path: 'phone', loadComponent: () => import('./phone.component') },
]),
],
};