Ontica/Empiria.Land.Intranet

View on GitHub
src/app/views/land-controls/land.controls.module.ts

Summary

Maintainability
A
0 mins
Test Coverage
/**
 * @license
 * Copyright (c) La Vía Óntica SC, Ontica LLC and contributors. All rights reserved.
 *
 * See LICENSE.txt in the project root for complete license information.
 */

import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';
import { FormsModule, ReactiveFormsModule } from '@angular/forms';

import { AngularMaterialModule } from '@app/shared/angular-material.module';
import { SharedModule } from '@app/shared/shared.module';

import { FileViewerComponent } from './file-viewer/file-viewer.component';
import { FileViewerNavigatorComponent } from './file-viewer/file-viewer-navigator.component';
import { RecordableSubjectSearcherComponent } from './recordable-subject/recordable-subject-searcher.component';
import { RecordableSubjectViewComponent } from './recordable-subject/recordable-subject-view.component';
import { RecordingBookSelectorComponent } from './recording-book-selector/recording-book-selector.component';
import { RecordingViewsButtonsComponent } from './recording-views-buttons/recording-views-buttons.component';
import { TractIndexEntriesTableComponent } from './tract-index/tract-index-entries-table.component';


@NgModule({

  imports: [
    CommonModule,
    FormsModule,
    ReactiveFormsModule,

    AngularMaterialModule,
    SharedModule,
  ],

  declarations: [
    FileViewerComponent,
    FileViewerNavigatorComponent,
    RecordableSubjectSearcherComponent,
    RecordableSubjectViewComponent,
    RecordingBookSelectorComponent,
    RecordingViewsButtonsComponent,
    TractIndexEntriesTableComponent,
  ],

  exports: [
    FileViewerComponent,
    RecordableSubjectSearcherComponent,
    RecordableSubjectViewComponent,
    RecordingBookSelectorComponent,
    RecordingViewsButtonsComponent,
    TractIndexEntriesTableComponent,
  ]

})
export class LandControlsModule { }