feat(challenge22): new challenge 22

This commit is contained in:
thomas
2023-05-22 22:30:54 +02:00
parent 2d5dab5211
commit 0bbda2b3a4
18 changed files with 288 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
import { ApplicationConfig } from '@angular/core';
import { provideRouter } from '@angular/router';
import { appRoutes } from './app.routes';
export const appConfig: ApplicationConfig = {
providers: [provideRouter(appRoutes)],
};