Files
ionic-framework/src/components/input/test/floating-labels/app/app.module.ts
Dan Bucholtz af16846568 chore(e2e): rename to to standardize on format
rename  to  to standardize on format
2017-03-20 11:57:26 -05:00

29 lines
583 B
TypeScript

import { Component, NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { IonicApp, IonicModule } from '../../../../../';
import { RootPage } from '../pages/root-page/root-page';
@Component({
template: '<ion-nav [root]="rootPage"></ion-nav>'
})
export class AppComponent {
rootPage = RootPage;
}
@NgModule({
declarations: [
AppComponent,
RootPage
],
imports: [
BrowserModule,
IonicModule.forRoot(AppComponent)
],
bootstrap: [IonicApp],
entryComponents: [
RootPage
]
})
export class AppModule {}