xigo-provider-package

xigo ionic library

Usage no npm install needed!

<script type="module">
  import xigoProviderPackage from 'https://cdn.skypack.dev/xigo-provider-package';
</script>

README

Xigo Package Mobile

this is a package for mobile ionic apps

Using your module 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 { xigoModule } from 'xigo-provider-packag';

@NgModule({
  declarations: [
    MyApp,
    HomePage
  ],
  imports: [
    IonicModule.forRoot(MyApp),
    xigoModule // Put your module here
  ],
  bootstrap: [IonicApp],
  entryComponents: [
    MyApp,
    HomePage
  ],
  providers: []
})
export class AppModule {}