CompUGE-Bench / src /main.ts
Ahmad Shallouf
initialize
1bc149f
raw
history blame contribute delete
250 Bytes
import { bootstrapApplication } from '@angular/platform-browser';
import { appConfig } from './app/app.config';
import { AppComponent } from './app/app.component';
bootstrapApplication(AppComponent, appConfig)
.catch((err) => console.error(err));