2020-12-21 16:37:44 +01:00
|
|
|
import { NgModule } from '@angular/core';
|
|
|
|
|
import { CommonModule } from '@angular/common';
|
|
|
|
|
import { FormsModule } from '@angular/forms';
|
|
|
|
|
|
|
|
|
|
import { IonicModule } from '@ionic/angular';
|
|
|
|
|
|
|
|
|
|
import { NewGroupPageRoutingModule } from './new-group-routing.module';
|
|
|
|
|
|
|
|
|
|
import { NewGroupPage } from './new-group.page';
|
2020-12-22 15:53:30 +01:00
|
|
|
import { SharedModule } from 'src/app/shared/shared.module';
|
2021-07-28 09:29:14 +01:00
|
|
|
|
2021-06-03 14:52:49 +01:00
|
|
|
import { BtnSeguintePageModule } from 'src/app/shared/btn-seguinte/btn-seguinte.module';
|
2020-12-21 16:37:44 +01:00
|
|
|
|
|
|
|
|
@NgModule({
|
|
|
|
|
imports: [
|
|
|
|
|
CommonModule,
|
|
|
|
|
FormsModule,
|
|
|
|
|
IonicModule,
|
2021-07-28 09:29:14 +01:00
|
|
|
|
2021-06-03 14:52:49 +01:00
|
|
|
NewGroupPageRoutingModule,
|
|
|
|
|
BtnSeguintePageModule,
|
2020-12-21 16:37:44 +01:00
|
|
|
],
|
|
|
|
|
declarations: [NewGroupPage]
|
|
|
|
|
})
|
|
|
|
|
export class NewGroupPageModule {}
|