Files
trouvetonprofile/src/app/shared/components/project-item/project-item.component.ts
2025-10-23 14:10:53 +02:00

17 lines
519 B
TypeScript

import { Component, Input } from '@angular/core';
import { environment } from '@env/environment';
import { ProjectViewModel } from '@app/ui/projects/project.presenter.model';
@Component({
selector: 'app-project-item',
standalone: true,
imports: [],
templateUrl: './project-item.component.html',
styleUrl: './project-item.component.scss',
})
export class ProjectItemComponent {
protected readonly environment = environment;
@Input({ required: true }) project: ProjectViewModel | undefined = undefined;
}