mirror of
https://github.com/Raghu-Ch/angular-challenges.git
synced 2026-02-10 12:53:03 -05:00
9 lines
384 B
TypeScript
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));
|