setup Angular app

This commit is contained in:
Thomas Peetz
2025-07-18 17:17:00 +02:00
parent 0d99f383fb
commit 3b4098cb1a
18 changed files with 10203 additions and 17 deletions
+6
View File
@@ -0,0 +1,6 @@
import { bootstrapApplication } from '@angular/platform-browser';
import { appConfig } from './app/app.config';
import { App } from './app/app';
bootstrapApplication(App, appConfig)
.catch((err) => console.error(err));