initial commit of the new UI based on Angular

At this point it is still the example Angular application.
This commit is contained in:
2019-10-08 18:18:24 +02:00
parent c128bdd532
commit 65b37e9c67
33 changed files with 14453 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import { AppRoutingModule } from './app-routing.module';
import { AppComponent } from './app.component';
@NgModule({
declarations: [
AppComponent
],
imports: [
BrowserModule,
AppRoutingModule
],
providers: [],
bootstrap: [AppComponent]
})
export class AppModule { }