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
import {ComponentLibraryModule} from "component-library";
14

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

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