docs(demos): update segment module

This commit is contained in:
Brandy Carney
2018-02-02 17:31:48 -05:00
parent 82cdfbd336
commit c99f6e4317

View File

@ -1,5 +1,7 @@
import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core';
import { CommonModule } from '@angular/common';
import { FormsModule } from '@angular/forms';
import { IonicAngularModule } from '@ionic/angular';
import { SegmentPageComponent } from './segment-page.component';
import { SegmentRoutingModule } from './segment-routing.module';
@ -7,7 +9,9 @@ import { SegmentRoutingModule } from './segment-routing.module';
@NgModule({
imports: [
CommonModule,
SegmentRoutingModule
FormsModule,
SegmentRoutingModule,
IonicAngularModule
],
declarations: [SegmentPageComponent],
schemas: [CUSTOM_ELEMENTS_SCHEMA]