1234567891011121314151617181920 |
- import { NgModule } from '@angular/core';
- import { CommonModule } from '@angular/common';
- import { FormsModule } from '@angular/forms';
- import { IonicModule } from '@ionic/angular';
- import { CropIntroPageRoutingModule } from './crop-intro-routing.module';
- import { CropIntroPage } from './crop-intro.page';
- @NgModule({
- imports: [
- CommonModule,
- FormsModule,
- IonicModule,
- CropIntroPageRoutingModule
- ],
- declarations: [CropIntroPage]
- })
- export class CropIntroPageModule {}
|