Newer
Older
CamaraComercioWeb / src / app / modules / public / home / home.component.ts
Fabian Vera on 28 Sep 2021 241 bytes [add] starting the project
import { Component, OnInit } from '@angular/core'

@Component({
  templateUrl: './home.component.html',
  styleUrls: ['./home.component.scss'],
})
export class HomeComponent implements OnInit {

  constructor() { }
  ngOnInit(): void { }

}