Files
angular-challenges/apps/testing/todos-list/src/main.ts
2023-10-18 14:08:57 +02:00

9 lines
251 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)
);