Project

General

Profile

1 61381 k.triantaf
import {NgModule} from '@angular/core';
2
import {SharedModule} from '../../../shared/shared.module';
3
import {ClaimEntityTitleComponent} from "./ClaimEntityTitle.component";
4
import {ClaimEntityResultMetadataComponent} from "./ClaimEntityResultMetadata.component";
5
import {ClaimEntityProjectMetadataComponent} from "./ClaimEntityProjectMetadata.component";
6
7
@NgModule({
8
  imports: [
9
    SharedModule
10
  ],
11
  declarations: [
12
     ClaimEntityTitleComponent, ClaimEntityResultMetadataComponent, ClaimEntityProjectMetadataComponent
13
  ], exports:[ ClaimEntityTitleComponent, ClaimEntityResultMetadataComponent, ClaimEntityProjectMetadataComponent]
14
})
15
export class ClaimEntitiesMetadataModule { }