Files
angular-challenges/apps/ngrx/notification/src/main.ts
2023-10-24 10:59:36 +02:00

10 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)
);