initial commit

This commit is contained in:
Janis Meister
2022-01-12 10:04:34 +01:00
commit 0e26454834
28 changed files with 23665 additions and 0 deletions

16
src/app/app.module.ts Normal file
View File

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