import {NgModule} from "@angular/core"; import {AnnotationComponent} from "./annotation.component"; import {CommonModule} from "@angular/common"; import {DragDropModule} from "@angular/cdk/drag-drop"; @NgModule({ imports: [CommonModule, DragDropModule], declarations: [AnnotationComponent], exports: [AnnotationComponent] }) export class AnnotationModule {}