ionic-module-appsapp
v0.0.4
Published
An appsapp framework as ionic2 module
Downloads
5
Readme
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 {}