14 lines
347 B
TypeScript
14 lines
347 B
TypeScript
import { ChangeDetectionStrategy, Component, OnInit } from '@angular/core';
|
|
|
|
@Component({
|
|
selector: 'app-footer',
|
|
templateUrl: './footer.component.html',
|
|
styleUrls: ['./footer.component.scss'],
|
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
})
|
|
export class FooterComponent implements OnInit {
|
|
constructor() {}
|
|
|
|
ngOnInit(): void {}
|
|
}
|