mirror of
https://code.equilibrium.co.ao/ITO/doneit-web.git
synced 2026-04-20 05:16:07 +00:00
15 lines
291 B
TypeScript
15 lines
291 B
TypeScript
import { Component, OnInit } from '@angular/core';
|
|
|
|
@Component({
|
|
selector: 'app-task-options',
|
|
templateUrl: './task-options.component.html',
|
|
styleUrls: ['./task-options.component.scss'],
|
|
})
|
|
export class TaskOptionsComponent implements OnInit {
|
|
|
|
constructor() { }
|
|
|
|
ngOnInit() {}
|
|
|
|
}
|