Initial commit
This commit is contained in:
19
src/pages/tabs/tabs.ts
Normal file
19
src/pages/tabs/tabs.ts
Normal 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() {
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user