This commit is contained in:
Peter Maquiran
2021-04-21 19:59:49 +01:00
parent ef1c260f77
commit 6d6dbb2278
12 changed files with 349 additions and 39 deletions
@@ -0,0 +1,14 @@
import { Component, OnInit } from '@angular/core';
@Component({
selector: 'app-create-task',
templateUrl: './create-task.component.html',
styleUrls: ['./create-task.component.scss'],
})
export class CreateTaskComponent implements OnInit {
constructor() { }
ngOnInit() {}
}