Files
angular-challenges/apps/angular/5-crud-application/src/main.ts
2024-05-12 12:18:12 +02:00

9 lines
252 B
TypeScript

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