From aeffe21f05335b07557cbb5b6e9fea6a4faa8df9 Mon Sep 17 00:00:00 2001 From: Christian Greif Date: Tue, 16 Jun 2020 14:16:32 +0200 Subject: [PATCH] V1.0 Vorerst finaler Stand 16.06. --- src/app/components/about/about.component.css | 0 src/app/components/about/about.component.html | 16 ++++++++++++ .../components/about/about.component.spec.ts | 25 +++++++++++++++++++ src/app/components/about/about.component.ts | 15 +++++++++++ 4 files changed, 56 insertions(+) create mode 100644 src/app/components/about/about.component.css create mode 100644 src/app/components/about/about.component.html create mode 100644 src/app/components/about/about.component.spec.ts create mode 100644 src/app/components/about/about.component.ts diff --git a/src/app/components/about/about.component.css b/src/app/components/about/about.component.css new file mode 100644 index 0000000..e69de29 diff --git a/src/app/components/about/about.component.html b/src/app/components/about/about.component.html new file mode 100644 index 0000000..b730121 --- /dev/null +++ b/src/app/components/about/about.component.html @@ -0,0 +1,16 @@ +

Kontakt:

+

Sie möchten mit uns in Kontakt treten, weil sie Fragen, Probleme oder Anregungen haben? Kein Problem! Über die nachfolgenden Kontaktdaten erreichen Sie uns. Wir freuen uns auf Ihre Nachricht! +

+

Technische Hochschule Nürnberg
+ Christian Greif
+ Kesslerplatz 12
+ 90489 Nürnberg
+ Tel. 0911-5880-0
+ Fax 0911-5880-8309
+ E-Mail: Info@TH-Nuernberg.de
Internet: Technische Hochschule Nürnberg

+ +

Das WebTeam erreichen Sie über folgende E-Mail Adresse
E-Mail: greifch67520@th-nuernberg.de

+
+
+
+ diff --git a/src/app/components/about/about.component.spec.ts b/src/app/components/about/about.component.spec.ts new file mode 100644 index 0000000..6b77344 --- /dev/null +++ b/src/app/components/about/about.component.spec.ts @@ -0,0 +1,25 @@ +import { async, ComponentFixture, TestBed } from '@angular/core/testing'; + +import { AboutComponent } from './about.component'; + +describe('AboutComponent', () => { + let component: AboutComponent; + let fixture: ComponentFixture; + + beforeEach(async(() => { + TestBed.configureTestingModule({ + declarations: [ AboutComponent ] + }) + .compileComponents(); + })); + + beforeEach(() => { + fixture = TestBed.createComponent(AboutComponent); + component = fixture.componentInstance; + fixture.detectChanges(); + }); + + it('should create', () => { + expect(component).toBeTruthy(); + }); +}); diff --git a/src/app/components/about/about.component.ts b/src/app/components/about/about.component.ts new file mode 100644 index 0000000..e4ae6d9 --- /dev/null +++ b/src/app/components/about/about.component.ts @@ -0,0 +1,15 @@ +import { Component, OnInit } from '@angular/core'; + +@Component({ + selector: 'app-about', + templateUrl: './about.component.html', + styleUrls: ['./about.component.css'] +}) +export class AboutComponent implements OnInit { + + constructor() { } + + ngOnInit(): void { + } + +}