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

View File

@@ -0,0 +1,11 @@
<ion-header>
<ion-navbar>
<ion-title>
About
</ion-title>
</ion-navbar>
</ion-header>
<ion-content padding>
</ion-content>

View File

@@ -0,0 +1,3 @@
page-about {
}

14
src/pages/about/about.ts Normal file
View File

@@ -0,0 +1,14 @@
import { Component } from '@angular/core';
import { NavController } from 'ionic-angular';
@Component({
selector: 'page-about',
templateUrl: 'about.html'
})
export class AboutPage {
constructor(public navCtrl: NavController) {
}
}