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

14 lines
465 B
TypeScript
Raw Normal View History

2025-08-28 08:20:37 -03:00
import { Component, Input } from '@angular/core';
2025-06-04 23:21:18 -05:00
import { AngularMaterialModule } from '../../shared/module/angular-material.module';
2025-08-02 22:35:52 -03:00
import { CommonModule } from '@angular/common';
2025-06-04 23:21:18 -05:00
@Component({
selector: 'app-footer',
2025-08-02 22:35:52 -03:00
imports: [AngularMaterialModule, CommonModule],
2025-06-04 23:21:18 -05:00
templateUrl: './footer.component.html',
styleUrl: './footer.component.scss'
})
export class FooterComponent {
currentYear = new Date().getFullYear();
2025-08-02 22:35:52 -03:00
@Input() isUserLoggedIn = false;
2025-06-04 23:21:18 -05:00
}