15 lines
398 B
TypeScript
15 lines
398 B
TypeScript
import { Component, Input } from '@angular/core';
|
|
import { Skill } from '../../../../models/skill';
|
|
|
|
@Component({
|
|
selector: 'app-skill-card',
|
|
imports: [],
|
|
templateUrl: './skill-card.html',
|
|
styleUrl: './skill-card.scss',
|
|
})
|
|
export class SkillCard {
|
|
@Input({ required: true }) title!: string;
|
|
@Input({ required: true }) category!: string;
|
|
@Input({ required: true }) skills!: Skill[];
|
|
}
|