Files
angular-challenges/apps/ngrx/7-power-of-effect/src/main.ts
2024-05-12 12:18:12 +02:00

10 lines
253 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),
);