22 lines
340 B
TypeScript
22 lines
340 B
TypeScript
import { Component, OnInit } from '@angular/core';
|
|
|
|
@Component({
|
|
selector: 'app-footer',
|
|
templateUrl: './footer.component.html',
|
|
styleUrls: ['./footer.component.scss']
|
|
})
|
|
|
|
/**
|
|
* Footer component
|
|
*/
|
|
export class FooterComponent implements OnInit {
|
|
|
|
year = new Date().getFullYear()
|
|
|
|
constructor() { }
|
|
|
|
ngOnInit(): void {
|
|
}
|
|
|
|
}
|