feat(challenge30): interop rxjs signal

This commit is contained in:
thomas
2023-07-11 21:44:06 +02:00
parent 31366de7a6
commit ebede121e7
25 changed files with 96 additions and 88 deletions

View File

@@ -0,0 +1,7 @@
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)
);