angular-hotel-manager/src/main.ts
Jan Klattenhoff d1cc5b076d
All checks were successful
Build / Build and analyze (push) Successful in 1m43s
feat(app): add observable stream processing in ngOnInit
2024-10-01 08:27:41 +02:00

11 lines
288 B
TypeScript

import { bootstrapApplication } from '@angular/platform-browser';
import { appConfig } from './app/app.config';
import { AppComponent } from './app/app.component';
import { Observable } from 'rxjs';
bootstrapApplication(AppComponent, appConfig)
.catch((err) => console.error(err));