openaire-library/landingPages/annotation/annotation.module.ts

8 lines
224 B
TypeScript

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