econocart/old/pmdsys/src/pages/tabs/tabs.ts

21 lines
444 B
TypeScript
Raw Normal View History

2017-05-28 22:15:08 +00:00
import { Component } from "@angular/core";
2017-04-03 13:43:23 +00:00
2017-05-28 22:15:08 +00:00
import { HomePage } from "../home/home";
import { AboutPage } from "../about/about";
import { ContactPage } from "../contact/contact";
2017-04-03 13:43:23 +00:00
@Component({
2017-05-28 22:15:08 +00:00
templateUrl: "tabs.html"
2017-04-03 13:43:23 +00:00
})
export class TabsPage {
// this tells the tabs component which Pages
// should be each tab's root Page
tab1Root: any = HomePage;
tab2Root: any = AboutPage;
tab3Root: any = ContactPage;
constructor() {
}
}