Newer
Older
CamaraComercioWeb / src / app / shared / components / brand / brand.component.ts
Fabian Vera on 28 Sep 2021 272 bytes [add] starting the project
import { Component, OnInit } from '@angular/core';

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

  constructor() { }

  ngOnInit(): void {
  }

}