explore-container.module.ts 461 B

1234567891011121314
  1. import { NgModule } from '@angular/core';
  2. import { CommonModule } from '@angular/common';
  3. import { FormsModule } from '@angular/forms';
  4. import { IonicModule } from '@ionic/angular';
  5. import { ExploreContainerComponent } from './explore-container.component';
  6. @NgModule({
  7. imports: [ CommonModule, FormsModule, IonicModule],
  8. declarations: [ExploreContainerComponent],
  9. exports: [ExploreContainerComponent]
  10. })
  11. export class ExploreContainerComponentModule {}