From 0b9c820a198e9daac58703f5372ca437ddf2f49e Mon Sep 17 00:00:00 2001 From: J Roz <jroz@icloud.com> Date: Sat, 14 Dec 2024 23:11:54 +1100 Subject: [PATCH] NEW: Create initial files for migration of progress-dashboard component --- .../progress-dashboard.component.html | 0 .../progress-dashboard.component.scss | 0 .../progress-dashboard/progress-dashboard.component.ts | 10 ++++++++++ 3 files changed, 10 insertions(+) create mode 100644 src/app/projects/states/dashboard/directives/progress-dashboard/progress-dashboard.component.html create mode 100644 src/app/projects/states/dashboard/directives/progress-dashboard/progress-dashboard.component.scss create mode 100644 src/app/projects/states/dashboard/directives/progress-dashboard/progress-dashboard.component.ts diff --git a/src/app/projects/states/dashboard/directives/progress-dashboard/progress-dashboard.component.html b/src/app/projects/states/dashboard/directives/progress-dashboard/progress-dashboard.component.html new file mode 100644 index 000000000..e69de29bb diff --git a/src/app/projects/states/dashboard/directives/progress-dashboard/progress-dashboard.component.scss b/src/app/projects/states/dashboard/directives/progress-dashboard/progress-dashboard.component.scss new file mode 100644 index 000000000..e69de29bb diff --git a/src/app/projects/states/dashboard/directives/progress-dashboard/progress-dashboard.component.ts b/src/app/projects/states/dashboard/directives/progress-dashboard/progress-dashboard.component.ts new file mode 100644 index 000000000..693c6c829 --- /dev/null +++ b/src/app/projects/states/dashboard/directives/progress-dashboard/progress-dashboard.component.ts @@ -0,0 +1,10 @@ +import { Component, Input, Inject } from '@angular/core'; + +@Component({ + selector: 'progress-dashboard', + templateUrl: 'progress-dashboard.component.html', + styleUrls: ['progress-dashboard.component.scss'], +}) +export class TaskDescriptionCardComponent { + constructor() {} +}