AltitudeWeb/frontend/src/app/footer/footer.component.ts

17 lines
392 B
TypeScript
Raw Normal View History

import {Component} from '@angular/core';
2025-04-05 21:05:45 +00:00
import {ALTITUDE_VERSION} from '../constant';
@Component({
selector: 'app-footer',
standalone: false,
templateUrl: './footer.component.html',
styleUrl: './footer.component.scss'
})
export class FooterComponent {
public getCurrentYear() {
return new Date().getFullYear();
}
2025-04-05 21:05:45 +00:00
protected readonly ALTITUDE_VERSION = ALTITUDE_VERSION;
}