ADDED angular Web App

This commit is contained in:
Marek Lesko
2025-07-09 17:32:56 +00:00
parent 51678f619b
commit 80baf2a3fa
24 changed files with 9711 additions and 1 deletions

6
Web/src/main.ts Normal file
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));