uoa-repository-manager-ui/src/app/pages/content/content.module.ts

30 lines
1.0 KiB
TypeScript
Executable File

import { ReusableComponentsModule } from '../../shared/reusablecomponents/reusable-components.module';
import { ReactiveFormsModule } from '@angular/forms';
import { ContentNotificationsOfSubscriptionComponent } from './content-notifications-of-subscription.component';
import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';
import { TabsModule } from 'ngx-bootstrap';
import { ContentRouting } from './content.routing';
import { ContentComponent } from './content.component';
import { ContentNotificationsComponent } from './content-notifications.component';
@NgModule ({
imports: [
CommonModule,
TabsModule.forRoot(),
ContentRouting,
ReactiveFormsModule,
ReusableComponentsModule
],
declarations: [
ContentComponent,
// ContentEventsComponent,
// ContentEventsOfRepositoryComponent,
// ContentEventsOfRepoEventslistComponent,
ContentNotificationsComponent,
ContentNotificationsOfSubscriptionComponent
]
})
export class ContentModule {}