1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | 1x 1x 1x 1x | import { Component, OnInit } from '@angular/core'; import { KanbanComponent } from './kanban/kanban.component'; @Component({ selector: 'mwb-tasks', templateUrl: './tasks.component.html', styleUrls: ['./tasks.component.css'] }) export class TasksComponent implements OnInit { constructor() { } ngOnInit() { } } |