22 lines
639 B
TypeScript
22 lines
639 B
TypeScript
import { NgModule } from '@angular/core';
|
|
import { CommonModule } from '@angular/common';
|
|
import { FormsModule } from '@angular/forms';
|
|
|
|
import { IonicModule } from '@ionic/angular';
|
|
|
|
import { JobintprocessPageRoutingModule } from './jobintprocess-routing.module';
|
|
import { InterestCardComponent } from '../../components/interest-card/interest-card.component';
|
|
|
|
import { JobintprocessPage } from './jobintprocess.page';
|
|
|
|
@NgModule({
|
|
imports: [
|
|
CommonModule,
|
|
FormsModule,
|
|
IonicModule,
|
|
JobintprocessPageRoutingModule
|
|
],
|
|
declarations: [JobintprocessPage,InterestCardComponent]
|
|
})
|
|
export class JobintprocessPageModule {}
|