14 lines
322 B
TypeScript
14 lines
322 B
TypeScript
import { Component, OnInit, HostListener, OnDestroy } from '@angular/core';
|
|
|
|
@Component({
|
|
selector: 'taskana-workplace',
|
|
templateUrl: './workplace.component.html'
|
|
})
|
|
export class WorkplaceComponent implements OnInit, OnDestroy {
|
|
constructor() { }
|
|
ngOnInit(): void {
|
|
}
|
|
ngOnDestroy(): void {
|
|
}
|
|
}
|