cleaned up imports
This commit is contained in:
parent
d799f6023d
commit
9cc1d4b981
6 changed files with 0 additions and 51 deletions
|
@ -1,16 +0,0 @@
|
||||||
import { NgModule } from '@angular/core';
|
|
||||||
import { IonicPageModule } from 'ionic-angular';
|
|
||||||
import { LoginPage } from './login';
|
|
||||||
|
|
||||||
@NgModule({
|
|
||||||
declarations: [
|
|
||||||
LoginPage,
|
|
||||||
],
|
|
||||||
imports: [
|
|
||||||
IonicPageModule.forChild(LoginPage),
|
|
||||||
],
|
|
||||||
exports: [
|
|
||||||
LoginPage
|
|
||||||
]
|
|
||||||
})
|
|
||||||
export class LoginPageModule {}
|
|
|
@ -14,7 +14,6 @@ import * as pnut from 'pnut-butter';
|
||||||
* See http://ionicframework.com/docs/components/#navigation for more info
|
* See http://ionicframework.com/docs/components/#navigation for more info
|
||||||
* on Ionic pages and navigation.
|
* on Ionic pages and navigation.
|
||||||
*/
|
*/
|
||||||
@IonicPage()
|
|
||||||
@Component({
|
@Component({
|
||||||
selector: 'page-login',
|
selector: 'page-login',
|
||||||
templateUrl: 'login.html',
|
templateUrl: 'login.html',
|
||||||
|
|
|
@ -1,16 +0,0 @@
|
||||||
import { NgModule } from '@angular/core';
|
|
||||||
import { IonicPageModule } from 'ionic-angular';
|
|
||||||
import { PostDetailsPage } from './post-details';
|
|
||||||
|
|
||||||
@NgModule({
|
|
||||||
declarations: [
|
|
||||||
PostDetailsPage,
|
|
||||||
],
|
|
||||||
imports: [
|
|
||||||
IonicPageModule.forChild(PostDetailsPage),
|
|
||||||
],
|
|
||||||
exports: [
|
|
||||||
PostDetailsPage
|
|
||||||
]
|
|
||||||
})
|
|
||||||
export class PostDetailsPageModule {}
|
|
|
@ -7,7 +7,6 @@ import { IonicPage, NavController, NavParams } from 'ionic-angular';
|
||||||
* See http://ionicframework.com/docs/components/#navigation for more info
|
* See http://ionicframework.com/docs/components/#navigation for more info
|
||||||
* on Ionic pages and navigation.
|
* on Ionic pages and navigation.
|
||||||
*/
|
*/
|
||||||
@IonicPage()
|
|
||||||
@Component({
|
@Component({
|
||||||
selector: 'page-post-details',
|
selector: 'page-post-details',
|
||||||
templateUrl: 'post-details.html',
|
templateUrl: 'post-details.html',
|
||||||
|
|
|
@ -1,16 +0,0 @@
|
||||||
import { NgModule } from '@angular/core';
|
|
||||||
import { IonicPageModule } from 'ionic-angular';
|
|
||||||
import { StreamPage } from './stream';
|
|
||||||
|
|
||||||
@NgModule({
|
|
||||||
declarations: [
|
|
||||||
StreamPage,
|
|
||||||
],
|
|
||||||
imports: [
|
|
||||||
IonicPageModule.forChild(StreamPage),
|
|
||||||
],
|
|
||||||
exports: [
|
|
||||||
StreamPage
|
|
||||||
]
|
|
||||||
})
|
|
||||||
export class StreamPageModule {}
|
|
|
@ -10,7 +10,6 @@ import * as pnut from 'pnut-butter';
|
||||||
* See http://ionicframework.com/docs/components/#navigation for more info
|
* See http://ionicframework.com/docs/components/#navigation for more info
|
||||||
* on Ionic pages and navigation.
|
* on Ionic pages and navigation.
|
||||||
*/
|
*/
|
||||||
@IonicPage()
|
|
||||||
@Component({
|
@Component({
|
||||||
selector: 'page-stream',
|
selector: 'page-stream',
|
||||||
templateUrl: 'stream.html',
|
templateUrl: 'stream.html',
|
||||||
|
|
Reference in a new issue