carnet-portal-app/src/app/common/footer/footer.component.ts
2025-06-04 23:21:18 -05:00

12 lines
361 B
TypeScript

import { Component } from '@angular/core';
import { AngularMaterialModule } from '../../shared/module/angular-material.module';
@Component({
selector: 'app-footer',
imports: [AngularMaterialModule],
templateUrl: './footer.component.html',
styleUrl: './footer.component.scss'
})
export class FooterComponent {
currentYear = new Date().getFullYear();
}