Project

General

Profile

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

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

    
29
export class ContentModule {}
(6-6/7)