23 lines
563 B
TypeScript
23 lines
563 B
TypeScript
|
import { NgModule } from '@angular/core';
|
||
|
import { CommonModule } from '@angular/common';
|
||
|
import { FormsModule } from '@angular/forms';
|
||
|
|
||
|
import { IonicModule } from '@ionic/angular';
|
||
|
|
||
|
import { EditorPageRoutingModule } from './editor-routing.module';
|
||
|
|
||
|
import { EditorPage } from './editor.page';
|
||
|
import {ComponentsModule} from '../../components/components.module';
|
||
|
|
||
|
@NgModule({
|
||
|
imports: [
|
||
|
CommonModule,
|
||
|
FormsModule,
|
||
|
IonicModule,
|
||
|
EditorPageRoutingModule,
|
||
|
ComponentsModule
|
||
|
],
|
||
|
declarations: [EditorPage]
|
||
|
})
|
||
|
export class EditorPageModule {}
|