Skip to content
Snippets Groups Projects
shared.module.ts 416 B
Newer Older
import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';
import { CourseItemComponent } from './course-item/course-item.component';
pnogal's avatar
pnogal committed
import { DragDropModule } from '@angular/cdk/drag-drop';

@NgModule({
pnogal's avatar
pnogal committed
	imports: [ CommonModule, DragDropModule ],
	exports: [ CourseItemComponent, DragDropModule ],
	declarations: [ CourseItemComponent ]
})

export class SharedDegreePlannerModule { }