Newer
Older
CamaraComercioWeb / src / app / shared / components / footer / footer.component.ts
Fabian Vera on 28 Sep 2021 276 bytes [add] starting the project
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 {
  }

}