Newer
Older
Website / src / app / footer / footer.component.ts
@lukas lukas on 23 Mar 2022 276 bytes add new angular layout
import { Component, OnInit } from '@angular/core';

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

  constructor() { }

  ngOnInit(): void {
  }

}