Skip to content
Snippets Groups Projects
footer.component.ts 348 B
Newer Older
import {ChangeDetectionStrategy, Component, OnInit} from '@angular/core';

@Component({
  selector: 'dlcm-footer',
  templateUrl: './footer.component.html',
  styleUrls: ['./footer.component.scss'],
  changeDetection: ChangeDetectionStrategy.OnPush,
})
export class FooterComponent implements OnInit {