15 lines
303 B
TypeScript
15 lines
303 B
TypeScript
import { Component, OnInit } from '@angular/core';
|
|
|
|
@Component({
|
|
selector: 'app-card-category',
|
|
templateUrl: './card-category.component.html',
|
|
styleUrls: ['./card-category.component.scss']
|
|
})
|
|
export class CardCategoryComponent implements OnInit {
|
|
|
|
constructor() { }
|
|
|
|
ngOnInit(): void {
|
|
}
|
|
|
|
}
|