BETTERZON-35 components created

This commit is contained in:
rebooooorn 2020-12-02 18:51:41 +01:00
parent 1037a5fdcf
commit 692ace9701
4 changed files with 50 additions and 0 deletions

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