Files
angular-challenges/apps/rxjs-race-condition/src/main.ts
2023-01-11 16:20:13 +01:00

9 lines
361 B
TypeScript

import { importProvidersFrom } from '@angular/core';
import { MatDialogModule } from '@angular/material/dialog';
import { bootstrapApplication } from '@angular/platform-browser';
import { AppComponent } from './app/app.component';
bootstrapApplication(AppComponent, {
providers: [importProvidersFrom(MatDialogModule)],
}).catch((err) => console.error(err));