src/app/layout/footer/footer.component.ts
selector |
app-footer
|
styleUrls |
footer.component.scss
|
templateUrl |
./footer.component.html
|
constructor()
|
Defined in
src/app/layout/footer/footer.component.ts:8
|
ngOnInit |
ngOnInit()
|
Defined in
src/app/layout/footer/footer.component.ts:12
|
Returns:
void
|
import { Component, OnInit } from '@angular/core';
@Component({
selector: 'app-footer',
templateUrl: './footer.component.html',
styleUrls: ['./footer.component.scss']
})
export class FooterComponent implements OnInit {
constructor() { }
ngOnInit() {
}
}
<footer></footer>