Page MenuHomec4science

page-view.module.ts
No OneTemporary

File Metadata

Created
Sat, Oct 12, 12:39

page-view.module.ts

import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';
import { MarginFieldComponent } from './margin-field/margin-field.component';
import { TextFieldComponent} from './textfield-component/textfield.component';
import { InteractedDirective } from './interacted.directive';
import { PageViewComponent } from './page-view.component';
import { PageViewService } from './page-view.service';
import { CopyrightComponent } from './copyright/copyright.component';
import { LineReferenceComponent } from './margin-field/line-reference/line-reference.component';
@NgModule({
declarations: [
InteractedDirective,
MarginFieldComponent,
TextFieldComponent,
PageViewComponent,
CopyrightComponent,
LineReferenceComponent
],
imports: [
CommonModule
],
providers: [
PageViewService
],
exports: [
MarginFieldComponent,
TextFieldComponent,
PageViewComponent,
CopyrightComponent
]
})
export class PageViewModule { }

Event Timeline