import { NgModule } from '@angular/core'; import { CommonModule } from '@angular/common'; import { FormsModule } from '@angular/forms'; import { IonicModule } from '@ionic/angular'; import { BountyStorePageRoutingModule } from './bounty-store-routing.module'; import { BountyStorePage } from './bounty-store.page'; @NgModule({ imports: [ CommonModule, FormsModule, IonicModule, BountyStorePageRoutingModule ], declarations: [BountyStorePage] }) export class BountyStorePageModule {}