feat(challenge23): create table for testing table challenge

This commit is contained in:
thomas
2023-05-27 21:48:32 +02:00
parent 0bbda2b3a4
commit b61028c744
24 changed files with 2118 additions and 2099 deletions

View File

@@ -1,4 +1,8 @@
import { provideHttpClient } from '@angular/common/http';
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(), provideHttpClient()],
}).catch((err) => console.error(err));