File: /var/www/vhost/disk-apps/pwa.sports-crowd.com/src/app/pages/polls-list/polls-list.module.ts
import { NgModule } from "@angular/core";
import { CommonModule } from "@angular/common";
import { FormsModule } from "@angular/forms";
import { IonicModule } from "@ionic/angular";
import { PollsListPageRoutingModule } from "./polls-list-routing.module";
import { PollsListPage } from "./polls-list.page";
import { TranslateModule } from "@ngx-translate/core";
@NgModule({
imports: [CommonModule, FormsModule, IonicModule, PollsListPageRoutingModule, TranslateModule.forChild()],
declarations: [PollsListPage],
})
export class PollsListPageModule {}