All files / src/app/tasks tasks.component.ts

100% Statements 6/6
100% Branches 0/0
33.33% Functions 1/3
100% Lines 4/4
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 171x               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() {
  }
 
}