import { Component, OnInit } from '@angular/core'; @Component({ selector: 'lib-footer', templateUrl: './footer.component.html', styleUrls: ['./footer.component.scss'] }) export class FooterComponent implements OnInit { currentYear : number = 2021; constructor() { } ngOnInit() { this.currentYear = new Date().getFullYear(); } }