Jan Klattenhoff
d1cc5b076d
All checks were successful
Build / Build and analyze (push) Successful in 1m43s
11 lines
288 B
TypeScript
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));
|