Project

General

Profile

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