libs/rucken/todo-web/src/lib/entities/projects/project-user-modal/project-user-modal.module.ts
import { CommonModule } from '@angular/common';
import { ModuleWithProviders, NgModule } from '@angular/core';
import { TranslateModule } from '@ngx-translate/core';
import { PromptFormModalModule } from '@rucken/web';
import { NgxBindIOModule } from 'ngx-bind-io';
import { ProjectUserModalComponent } from './project-user-modal.component';
@NgModule({
imports: [CommonModule, PromptFormModalModule, TranslateModule.forChild(), NgxBindIOModule],
declarations: [ProjectUserModalComponent],
entryComponents: [ProjectUserModalComponent],
exports: [ProjectUserModalComponent, PromptFormModalModule]
})
export class ProjectUserModalModule {}