20 lines
405 B
TypeScript
20 lines
405 B
TypeScript
import { NgModule } from '@angular/core';
|
|
import { FormsModule, ReactiveFormsModule } from '@angular/forms';
|
|
import { IonicModule } from 'ionic-angular';
|
|
|
|
@NgModule({
|
|
declarations: [
|
|
],
|
|
imports: [
|
|
FormsModule,
|
|
IonicModule,
|
|
ReactiveFormsModule
|
|
],
|
|
exports: [
|
|
],
|
|
entryComponents: [],
|
|
providers: []
|
|
})
|
|
|
|
export class ComponentsModule {}
|