Files
angular-challenges/apps/testing/table/src/main.ts
2023-10-18 14:08:57 +02:00

9 lines
384 B
TypeScript

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, {
providers: [provideAnimations(), provideHttpClient()],
}).catch((err) => console.error(err));