14 lines
465 B
TypeScript
14 lines
465 B
TypeScript
import { Component, Input } from '@angular/core';
|
|
import { AngularMaterialModule } from '../../shared/module/angular-material.module';
|
|
import { CommonModule } from '@angular/common';
|
|
|
|
@Component({
|
|
selector: 'app-footer',
|
|
imports: [AngularMaterialModule, CommonModule],
|
|
templateUrl: './footer.component.html',
|
|
styleUrl: './footer.component.scss'
|
|
})
|
|
export class FooterComponent {
|
|
currentYear = new Date().getFullYear();
|
|
@Input() isUserLoggedIn = false;
|
|
} |