From 692ace970140263f93eaef80a47ff362240a891b Mon Sep 17 00:00:00 2001 From: rebooooorn Date: Wed, 2 Dec 2020 18:51:41 +0100 Subject: [PATCH] BETTERZON-35 components created --- Frontend/src/app/footer/footer.component.css | 3 +++ Frontend/src/app/footer/footer.component.html | 7 ++++++ .../src/app/footer/footer.component.spec.ts | 25 +++++++++++++++++++ Frontend/src/app/footer/footer.component.ts | 15 +++++++++++ 4 files changed, 50 insertions(+) create mode 100644 Frontend/src/app/footer/footer.component.css create mode 100644 Frontend/src/app/footer/footer.component.html create mode 100644 Frontend/src/app/footer/footer.component.spec.ts create mode 100644 Frontend/src/app/footer/footer.component.ts diff --git a/Frontend/src/app/footer/footer.component.css b/Frontend/src/app/footer/footer.component.css new file mode 100644 index 0000000..e25c62c --- /dev/null +++ b/Frontend/src/app/footer/footer.component.css @@ -0,0 +1,3 @@ +.container{ + text-align: center; +} diff --git a/Frontend/src/app/footer/footer.component.html b/Frontend/src/app/footer/footer.component.html new file mode 100644 index 0000000..aa19043 --- /dev/null +++ b/Frontend/src/app/footer/footer.component.html @@ -0,0 +1,7 @@ + + + diff --git a/Frontend/src/app/footer/footer.component.spec.ts b/Frontend/src/app/footer/footer.component.spec.ts new file mode 100644 index 0000000..a3c4af9 --- /dev/null +++ b/Frontend/src/app/footer/footer.component.spec.ts @@ -0,0 +1,25 @@ +import { ComponentFixture, TestBed } from '@angular/core/testing'; + +import { FooterComponent } from './footer.component'; + +describe('FooterComponent', () => { + let component: FooterComponent; + let fixture: ComponentFixture; + + beforeEach(async () => { + await TestBed.configureTestingModule({ + declarations: [ FooterComponent ] + }) + .compileComponents(); + }); + + beforeEach(() => { + fixture = TestBed.createComponent(FooterComponent); + component = fixture.componentInstance; + fixture.detectChanges(); + }); + + it('should create', () => { + expect(component).toBeTruthy(); + }); +}); diff --git a/Frontend/src/app/footer/footer.component.ts b/Frontend/src/app/footer/footer.component.ts new file mode 100644 index 0000000..a10f2a4 --- /dev/null +++ b/Frontend/src/app/footer/footer.component.ts @@ -0,0 +1,15 @@ +import { Component, OnInit } from '@angular/core'; + +@Component({ + selector: 'app-footer', + templateUrl: './footer.component.html', + styleUrls: ['./footer.component.css'] +}) +export class FooterComponent implements OnInit { + + constructor() { } + + ngOnInit(): void { + } + +}