16 lines
420 B
TypeScript
16 lines
420 B
TypeScript
import { Component } from '@angular/core';
|
|
import { RouterLink } from '@angular/router';
|
|
import { CardComponent } from '../../components/card/card';
|
|
import { PROJECTS, Project } from './project-data';
|
|
|
|
@Component({
|
|
selector: 'app-projects',
|
|
imports: [RouterLink, CardComponent],
|
|
templateUrl: './projects.html',
|
|
styleUrl: './projects.css',
|
|
})
|
|
export class Projects {
|
|
readonly projects: Project[] = PROJECTS;
|
|
}
|
|
|