0.0.99 • Published 6 years ago

appsapp-components-module v0.0.99

Weekly downloads
2
License
MIT
Repository
github
Last release
6 years ago

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 {}