simpleat/src/app/card-category/card-category.component.ts
2022-01-18 17:25:08 +01:00

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 {
}
}