v1
This commit is contained in:
23
src/app/pages/aviso/aviso.module.ts
Normal file
23
src/app/pages/aviso/aviso.module.ts
Normal file
@@ -0,0 +1,23 @@
|
||||
import { NgModule } from '@angular/core';
|
||||
import { CommonModule } from '@angular/common';
|
||||
import { FormsModule } from '@angular/forms';
|
||||
|
||||
import { IonicModule } from '@ionic/angular';
|
||||
|
||||
import { AvisoPageRoutingModule } from './aviso-routing.module';
|
||||
import { AutoResizeTextDirective } from '../../directives/auto-resize-text.directive';
|
||||
|
||||
import { AvisoPage } from './aviso.page';
|
||||
import { CUSTOM_ELEMENTS_SCHEMA } from '@angular/core';
|
||||
|
||||
@NgModule({
|
||||
imports: [
|
||||
CommonModule,
|
||||
FormsModule,
|
||||
IonicModule,
|
||||
AvisoPageRoutingModule
|
||||
],
|
||||
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
||||
declarations: [AvisoPage, AutoResizeTextDirective]
|
||||
})
|
||||
export class AvisoPageModule {}
|
||||
Reference in New Issue
Block a user