Initial commit

This commit is contained in:
2018-02-15 20:40:34 -05:00
commit 30518e56d4
28 changed files with 520 additions and 0 deletions

19
src/pages/tabs/tabs.ts Normal file
View File

@@ -0,0 +1,19 @@
import { Component } from '@angular/core';
import { AboutPage } from '../about/about';
import { ContactPage } from '../contact/contact';
import { HomePage } from '../home/home';
@Component({
templateUrl: 'tabs.html'
})
export class TabsPage {
tab1Root = HomePage;
tab2Root = AboutPage;
tab3Root = ContactPage;
constructor() {
}
}