2020-01-28 15:09:32 +01:00
|
|
|
import {NgModule} from "@angular/core";
|
|
|
|
import {AnnotationComponent} from "./annotation.component";
|
2020-04-07 19:09:31 +02:00
|
|
|
import {CommonModule} from "@angular/common";
|
2020-04-08 16:24:30 +02:00
|
|
|
import {DragDropModule} from "@angular/cdk/drag-drop";
|
2020-11-25 17:09:36 +01:00
|
|
|
import {RouterModule} from "@angular/router";
|
2021-01-05 14:25:02 +01:00
|
|
|
import {LoadingModule} from "../../utils/loading/loading.module";
|
2020-01-28 15:09:32 +01:00
|
|
|
|
|
|
|
@NgModule({
|
2021-01-05 14:25:02 +01:00
|
|
|
imports: [CommonModule, DragDropModule, RouterModule, LoadingModule],
|
2020-01-28 15:09:32 +01:00
|
|
|
declarations: [AnnotationComponent],
|
|
|
|
exports: [AnnotationComponent]
|
|
|
|
})
|
2020-08-06 13:50:08 +02:00
|
|
|
export class AnnotationModule {}
|