mirror of
https://github.com/adam-benyekkou/my_portfolio.git
synced 2026-01-15 20:20:09 +00:00
14 lines
353 B
TypeScript
14 lines
353 B
TypeScript
import { Component, input } from '@angular/core';
|
|
|
|
@Component({
|
|
selector: 'app-link-card',
|
|
imports: [],
|
|
templateUrl: './link-card.component.html',
|
|
styleUrl: './link-card.component.css',
|
|
})
|
|
export class LinkCardComponent {
|
|
title = input.required<string>();
|
|
contact_link = input.required<string>();
|
|
description = input.required<string>();
|
|
}
|