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