21 lines
553 B
TypeScript
21 lines
553 B
TypeScript
import { NgModule } from '@angular/core';
|
|
import { CommonModule } from '@angular/common';
|
|
import { FormsModule } from '@angular/forms';
|
|
|
|
import { IonicModule } from '@ionic/angular';
|
|
|
|
import { ViewEventoClientePageRoutingModule } from './view-evento-cliente-routing.module';
|
|
|
|
import { ViewEventoClientePage } from './view-evento-cliente.page';
|
|
|
|
@NgModule({
|
|
imports: [
|
|
CommonModule,
|
|
FormsModule,
|
|
IonicModule,
|
|
ViewEventoClientePageRoutingModule
|
|
],
|
|
declarations: [ViewEventoClientePage]
|
|
})
|
|
export class ViewEventoClientePageModule {}
|