Project

General

Profile

1
import { ReusableComponentsModule } from '../../shared/reusablecomponents/reusable-components.module';
2
import { ContentEventsOfRepositoryComponent } from './content-events-of-repository.component';
3
import { ContentEventsOfRepoEventslistComponent } from './content-events-of-repo-eventslist.component';
4
import { ReactiveFormsModule } from '@angular/forms';
5
import { ContentNotificationsOfSubscriptionComponent } from './content-notifications-of-subscription.component';
6
import { NgModule } from '@angular/core';
7
import { CommonModule } from '@angular/common';
8
import { TabsModule } from 'ngx-bootstrap';
9
import { ContentRouting } from './content.routing';
10
import { ContentComponent } from './content.component';
11
import { ContentEventsComponent } from './content-events.component';
12
import { ContentNotificationsComponent } from './content-notifications.component';
13

    
14
@NgModule ({
15
  imports: [
16
    CommonModule,
17
    TabsModule.forRoot(),
18
    ContentRouting,
19
    ReactiveFormsModule,
20
    ReusableComponentsModule
21
  ],
22
  declarations: [
23
    ContentComponent,
24
    ContentEventsComponent,
25
    ContentEventsOfRepositoryComponent,
26
    ContentEventsOfRepoEventslistComponent,
27
    ContentNotificationsComponent,
28
    ContentNotificationsOfSubscriptionComponent
29
  ]
30
})
31

    
32
export class ContentModule {}
(12-12/13)