footer.component.ts 535 Bytes
Newer Older
tinhbe's avatar
tinhbe committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
import { CommonModule } from '@angular/common';
import { ChangeDetectionStrategy, Component, OnInit } from '@angular/core';
import { NzIconModule } from 'ng-zorro-antd/icon';
import { NzLayoutModule } from 'ng-zorro-antd/layout';
@Component({
  selector: 'meu-home-footer',
  standalone: true,
  imports: [CommonModule,
    NzLayoutModule,
    NzIconModule
  ],
  templateUrl: './footer.component.html',
  changeDetection: ChangeDetectionStrategy.OnPush,
})
export class FooterHomeComponent implements OnInit {
  ngOnInit(): void {}
}