cic-staff-client/src/app/shared/footer/footer.component.ts

15 lines
389 B
TypeScript
Raw Normal View History

2021-05-10 18:15:25 +02:00
import { ChangeDetectionStrategy, Component, OnInit } from '@angular/core';
@Component({
selector: 'app-footer',
templateUrl: './footer.component.html',
styleUrls: ['./footer.component.scss'],
2021-05-10 18:15:25 +02:00
changeDetection: ChangeDetectionStrategy.OnPush,
})
export class FooterComponent implements OnInit {
2021-05-26 11:51:54 +02:00
currentYear = new Date().getFullYear();
2021-05-10 18:15:25 +02:00
constructor() {}
2021-05-10 18:15:25 +02:00
ngOnInit(): void {}
}