File: /var/www/vhost/disk-apps/pwa.sports-crowd.com/src/app/pages/address-map/address-map.module.ts
import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from "@angular/core";
import { CommonModule } from "@angular/common";
import { IonicModule } from "@ionic/angular";
import { FormsModule } from "@angular/forms";
import { TranslateModule } from "@ngx-translate/core";
import { AddressMapPageRoutingModule } from "./address-map-routing.module";
import { AddressMapPage } from "./address-map";
@NgModule({
declarations: [AddressMapPage],
imports: [
CommonModule,
IonicModule,
FormsModule,
TranslateModule.forChild(),
AddressMapPageRoutingModule
],
schemas: [CUSTOM_ELEMENTS_SCHEMA]
})
export class AddressMapPageModule { }