client-app/src/app/common/footer/footer.component.ts

14 lines
465 B
TypeScript
Raw Normal View History

2025-07-27 16:50:25 -03:00
import { Component, Input } from '@angular/core';
2025-07-02 22:40:35 -03:00
import { AngularMaterialModule } from '../../shared/module/angular-material.module';
2025-07-27 16:50:25 -03:00
import { CommonModule } from '@angular/common';
2025-07-02 22:40:35 -03:00
@Component({
selector: 'app-footer',
2025-07-27 16:50:25 -03:00
imports: [AngularMaterialModule, CommonModule],
2025-07-02 22:40:35 -03:00
templateUrl: './footer.component.html',
styleUrl: './footer.component.scss'
})
export class FooterComponent {
currentYear = new Date().getFullYear();
2025-07-27 16:50:25 -03:00
@Input() isUserLoggedIn = false;
2025-07-02 22:40:35 -03:00
}