diff --git a/web-ui/src/app/app.component.html b/web-ui/src/app/app.component.html index 79be59c..730dd40 100644 --- a/web-ui/src/app/app.component.html +++ b/web-ui/src/app/app.component.html @@ -1,2 +1,3 @@ + diff --git a/web-ui/src/app/app.module.ts b/web-ui/src/app/app.module.ts index e44fbdf..6b9c7ac 100644 --- a/web-ui/src/app/app.module.ts +++ b/web-ui/src/app/app.module.ts @@ -16,11 +16,13 @@ import { LanguageService } from './services/language.service'; import { AppComponent } from './app.component'; import { HomeComponent } from './components/home/home.component'; +import { FooterComponent } from './components/footer/footer.component'; @NgModule({ declarations: [ AppComponent, - HomeComponent + HomeComponent, + FooterComponent ], imports: [ AppRoutingModule, diff --git a/web-ui/src/app/components/footer/footer.component.css b/web-ui/src/app/components/footer/footer.component.css new file mode 100644 index 0000000..e69de29 diff --git a/web-ui/src/app/components/footer/footer.component.html b/web-ui/src/app/components/footer/footer.component.html new file mode 100644 index 0000000..6800e0e --- /dev/null +++ b/web-ui/src/app/components/footer/footer.component.html @@ -0,0 +1,3 @@ +

+ footer works! +

diff --git a/web-ui/src/app/components/footer/footer.component.spec.ts b/web-ui/src/app/components/footer/footer.component.spec.ts new file mode 100644 index 0000000..2ca6c45 --- /dev/null +++ b/web-ui/src/app/components/footer/footer.component.spec.ts @@ -0,0 +1,25 @@ +import { async, ComponentFixture, TestBed } from '@angular/core/testing'; + +import { FooterComponent } from './footer.component'; + +describe('FooterComponent', () => { + let component: FooterComponent; + let fixture: ComponentFixture; + + beforeEach(async(() => { + TestBed.configureTestingModule({ + declarations: [ FooterComponent ] + }) + .compileComponents(); + })); + + beforeEach(() => { + fixture = TestBed.createComponent(FooterComponent); + component = fixture.componentInstance; + fixture.detectChanges(); + }); + + it('should create', () => { + expect(component).toBeTruthy(); + }); +}); diff --git a/web-ui/src/app/components/footer/footer.component.ts b/web-ui/src/app/components/footer/footer.component.ts new file mode 100644 index 0000000..67f1378 --- /dev/null +++ b/web-ui/src/app/components/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() { + } + +}