Skip to content
Snippets Groups Projects
document-form.module.ts 718 B
Newer Older
  • Learn to ignore specific revisions
  • import { NgModule } from '@angular/core';
    import { SharedModule } from './app-common.module';
    
    import { IndexingFormComponent } from './indexation/indexing-form/indexing-form.component';
    import { TagInputComponent } from './tag/indexing/tag-input.component';
    import { FolderInputComponent } from '../app/folder/indexing/folder-input.component';
    
    @NgModule({
        imports: [
            SharedModule
        ],
        declarations: [
            IndexingFormComponent,
            TagInputComponent,
            FolderInputComponent
        ],
        exports: [
            IndexingFormComponent,
            TagInputComponent,
            FolderInputComponent
        ],
        entryComponents: [
        ],
        providers: [
    
        ],
    })
    export class DocumentFormModule { }