src/app/shared/footer/footer.component.ts
changeDetection | ChangeDetectionStrategy.OnPush |
selector | app-footer |
styleUrls | ./footer.component.scss |
templateUrl | ./footer.component.html |
Methods |
constructor()
|
Defined in src/app/shared/footer/footer.component.ts:9
|
ngOnInit |
ngOnInit()
|
Defined in src/app/shared/footer/footer.component.ts:13
|
Returns :
void
|
import {ChangeDetectionStrategy, Component, OnInit} from '@angular/core';
@Component({
selector: 'app-footer',
templateUrl: './footer.component.html',
styleUrls: ['./footer.component.scss'],
changeDetection: ChangeDetectionStrategy.OnPush
})
export class FooterComponent implements OnInit {
constructor() { }
ngOnInit(): void {
}
}
<!-- Footer Start -->
<footer class="footer">
2020 © Grassroots Economics
</footer>
<!-- end Footer -->
./footer.component.scss