appsapp-components-module
v0.0.99
Published
An appsApp collection of high quality ui components module for Angular 2 and Ionic 2
Downloads
4
Readme
appsApp components for Angular2 and Ionic2
This is an appsApp collection of high quality ui components with awesome backend and validation services. Now you build super sophisticated Angular2/Ionic2 apps using TypeScript. Supports Angular's ngc and Ahead-of-Time compiling.
Installing the module
npm install --save appsapp-components-module
Using in an Ionic 2 app
import { NgModule } from '@angular/core';
import { IonicApp, IonicModule } from 'ionic-angular';
import { MyApp } from './app.component';
import { HomePage } from '../pages/home/home';
// Import your module
import { AppsappComponentsModule } from 'appsapp-components';
@NgModule({
declarations: [
MyApp,
HomePage
],
imports: [
IonicModule.forRoot(MyApp),
AppsappComponentsModule.withConfig({})
],
bootstrap: [IonicApp],
entryComponents: [
MyApp,
HomePage
],
providers: []
})
export class AppModule {}