mirror of
https://github.com/simon987/task_tracker.git
synced 2025-04-19 02:06:45 +00:00
17 lines
347 B
TypeScript
17 lines
347 B
TypeScript
import {Component, OnInit} from '@angular/core';
|
|
|
|
|
|
@Component({
|
|
selector: 'app-project-dashboard',
|
|
templateUrl: './project-dashboard.component.html',
|
|
styleUrls: ['./project-dashboard.component.css']
|
|
})
|
|
export class ProjectDashboardComponent implements OnInit {
|
|
|
|
private projectId;
|
|
projectStats;
|
|
|
|
ngOnInit(): void {
|
|
}
|
|
}
|