- import { Component } from "@angular/core";
- import { NavController } from "ionic-angular";
- @Component({
- selector: 'product-selection',
- templateUrl: 'product-selection.html'
- })
- export class ProductSelectionPage {
- constructor(
- public navCtrl: NavController
- ) {}
- }
|