Newer
Older
import { Component, Input } from '@angular/core';
import { Course } from '../../core/models/course';
import { CdkDragDrop, moveItemInArray, transferArrayItem } from '@angular/cdk/drag-drop';
pnogal
committed
@Component({
selector: 'app-term-container',
templateUrl: './term-container.component.html',
styleUrls: ['./term-container.component.scss']
pnogal
committed
})
export class TermContainerComponent {
@Input() term: Term;
@Input() courses: Course[];
pnogal
committed