2021-03-04 18:50:26 +01:00
|
|
|
import { NgModule } from '@angular/core';
|
|
|
|
|
import { CommonModule } from '@angular/common';
|
|
|
|
|
import { FormsModule } from '@angular/forms';
|
|
|
|
|
|
|
|
|
|
import { IonicModule } from '@ionic/angular';
|
|
|
|
|
|
|
|
|
|
import { MessagesPageRoutingModule } from './messages-routing.module';
|
|
|
|
|
|
|
|
|
|
import { MessagesPage } from './messages.page';
|
|
|
|
|
import { SharedModule } from 'src/app/shared/shared.module';
|
2021-06-02 10:26:32 +01:00
|
|
|
import { ComponentsModule } from 'src/app/components/components.module';
|
2021-03-04 18:50:26 +01:00
|
|
|
|
|
|
|
|
@NgModule({
|
|
|
|
|
imports: [
|
|
|
|
|
CommonModule,
|
|
|
|
|
FormsModule,
|
|
|
|
|
IonicModule,
|
2021-06-02 10:26:32 +01:00
|
|
|
ComponentsModule,
|
2021-03-04 18:50:26 +01:00
|
|
|
MessagesPageRoutingModule
|
|
|
|
|
],
|
2021-06-02 21:22:26 +01:00
|
|
|
declarations: []
|
2021-03-04 18:50:26 +01:00
|
|
|
})
|
|
|
|
|
export class MessagesPageModule {}
|