import {NgModule} from "@angular/core";
import {AnnotationComponent} from "./annotation.component";
@NgModule({
declarations: [AnnotationComponent],
exports: [AnnotationComponent]
})
export class AnnotationModule {}