16 lines
373 B
TypeScript
16 lines
373 B
TypeScript
import { credits, currentYear } from '@/app/common/constants'
|
|
import { Component, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'
|
|
|
|
@Component({
|
|
selector: 'app-footer',
|
|
standalone: true,
|
|
imports: [],
|
|
templateUrl: './footer.component.html',
|
|
styles: ``,
|
|
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
|
})
|
|
export class FooterComponent {
|
|
year = currentYear
|
|
credits = credits
|
|
}
|