Initial frontend

This commit is contained in:
2023-11-12 13:14:24 +03:00
parent aa329a2112
commit b8fdc163f7
20 changed files with 8136 additions and 1 deletions

6
frontend/src/main.ts Normal file
View File

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