flosight-ui/app/src/components/components.module.ts
2017-07-11 10:50:43 -04:00

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 {}