product-selection.ts 286 B

12345678910111213
  1. import { Component } from "@angular/core";
  2. import { NavController } from "ionic-angular";
  3. @Component({
  4. selector: 'product-selection',
  5. templateUrl: 'product-selection.html'
  6. })
  7. export class ProductSelectionPage {
  8. constructor(
  9. public navCtrl: NavController
  10. ) {}
  11. }