mirror of
https://code.equilibrium.co.ao/ITO/doneit-web.git
synced 2026-04-21 05:45:50 +00:00
15 lines
287 B
TypeScript
15 lines
287 B
TypeScript
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() {}
|
|
|
|
}
|