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

100% Statements 10/10
100% Branches 0/0
100% Functions 1/1
100% Lines 7/7
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 251x 1x   1x 1x 1x 1x                                 1x  
import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';
 
import { TasksComponent } from './tasks.component';
import { KanbanComponent } from './kanban/kanban.component';
import { KanbanListComponent } from './kanban-list/kanban-list.component';
import { KanbanCardComponent } from './kanban-card/kanban-card.component';
 
@NgModule({
  imports: [
    CommonModule
  ],
  exports: [
  ],
  declarations: [
    TasksComponent,
    KanbanComponent,
    KanbanListComponent,
    KanbanCardComponent
  ],
  providers: [
  ],
})
export class TasksModule {}