Merge pull request #8 from Mueller-Patrick/BETTERZON-35

Betterzon 35
This commit is contained in:
Patrick 2020-12-02 19:11:20 +01:00 committed by GitHub
commit 38b20d28cb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 53 additions and 1 deletions

View File

@ -7,13 +7,15 @@ import {AppRouting} from './app.routing';
import {ProductListComponent} from './product-list/product-list.component';
import { LandingpageComponent } from './landingpage/landingpage.component';
import { ProductDetailPageComponent } from './product-detail-page/product-detail-page.component';
import { FooterComponent } from './footer/footer.component';
@NgModule({
declarations: [
AppComponent,
ProductListComponent,
LandingpageComponent,
ProductDetailPageComponent
ProductDetailPageComponent,
FooterComponent
],
imports: [
BrowserModule,

View File

@ -0,0 +1,3 @@
.container{
text-align: center;
}

View File

@ -0,0 +1,7 @@
<!--- footer --->
<footer class = "footer">
<div class="container">
.footer
</div>
</footer>

View File

@ -0,0 +1,25 @@
import { ComponentFixture, TestBed } from '@angular/core/testing';
import { FooterComponent } from './footer.component';
describe('FooterComponent', () => {
let component: FooterComponent;
let fixture: ComponentFixture<FooterComponent>;
beforeEach(async () => {
await TestBed.configureTestingModule({
declarations: [ FooterComponent ]
})
.compileComponents();
});
beforeEach(() => {
fixture = TestBed.createComponent(FooterComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});

View File

@ -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 {
}
}