0.0.4 • Published 7 years ago

ionic-module-appsapp v0.0.4

Weekly downloads
1
License
MIT
Repository
github
Last release
7 years ago

Ionic Module appsApp Framework

This is a module for building your own apps with appsApp framework.

Installing the module

npm install --save ionic-module-appsapp

Using your module in an Ionic 2 app

import {AppsappModule} from "ionic-module-appsapp";

@NgModule({
  declarations: [
    MyApp,
    HomePage
  ],
  imports: [
    BrowserModule,
    IonicModule.forRoot(MyApp),
    AppsappModule
  ],
  bootstrap: [IonicApp],
  entryComponents: [
    MyApp,
    HomePage
  ],
  providers: [
    StatusBar,
    SplashScreen,
    {provide: ErrorHandler, useClass: IonicErrorHandler}
  ]
})
export class AppModule {}