carnet-portal-app/src/app/common/footer/footer.component.ts

12 lines
361 B
TypeScript
Raw Normal View History

2025-06-04 23:21:18 -05:00
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();
}