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 { bootstrapApplication } from '@angular/platform-browser';
import { appConfig } from './app/app.config';
import { AppComponent } from './app/app.component';
bootstrapApplication(AppComponent, appConfig).catch((err) =>
console.error(err)
);