feat(challenge20): create challenge testing modal

This commit is contained in:
thomas
2023-04-25 14:34:44 +02:00
parent 3923cc44f1
commit f378ea01fb
7 changed files with 111 additions and 813 deletions

View File

@@ -1,4 +1,7 @@
import { bootstrapApplication } from '@angular/platform-browser';
import { provideAnimations } from '@angular/platform-browser/animations';
import { AppComponent } from './app/app.component';
bootstrapApplication(AppComponent).catch((err) => console.error(err));
bootstrapApplication(AppComponent, {
providers: [provideAnimations()],
}).catch((err) => console.error(err));