Skip to content

Commit 4de28a6

Browse files
committed
Add modules for all pages
1 parent af732c7 commit 4de28a6

File tree

63 files changed

+1071
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

63 files changed

+1071
-0
lines changed

src/pages/_home/home.module.ts

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
import { HomePage } from './home';
2+
import { NgModule } from '@angular/core';
3+
import { IonicPageModule } from 'ionic-angular';
4+
5+
@NgModule({
6+
declarations: [
7+
HomePage,
8+
],
9+
imports: [
10+
IonicPageModule.forChild(HomePage),
11+
],
12+
exports: [
13+
HomePage
14+
]
15+
})
16+
17+
export class HomePageModule { };
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
import { AlertsPagePage } from './alerts-page';
2+
import { NgModule } from '@angular/core';
3+
import { IonicPageModule } from 'ionic-angular';
4+
5+
@NgModule({
6+
declarations: [
7+
AlertsPagePage,
8+
],
9+
imports: [
10+
IonicPageModule.forChild(AlertsPagePage),
11+
],
12+
exports: [
13+
AlertsPagePage
14+
]
15+
})
16+
17+
export class AlertsPagePageModule { };
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
import { ButtonComponentsPage } from './button-components';
2+
import { NgModule } from '@angular/core';
3+
import { IonicPageModule } from 'ionic-angular';
4+
5+
@NgModule({
6+
declarations: [
7+
ButtonComponentsPage,
8+
],
9+
imports: [
10+
IonicPageModule.forChild(ButtonComponentsPage),
11+
],
12+
exports: [
13+
ButtonComponentsPage
14+
]
15+
})
16+
17+
export class ButtonComponentsPageModule { };
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
import { ButtonsListPage } from './buttons-list';
2+
import { NgModule } from '@angular/core';
3+
import { IonicPageModule } from 'ionic-angular';
4+
5+
@NgModule({
6+
declarations: [
7+
ButtonsListPage,
8+
],
9+
imports: [
10+
IonicPageModule.forChild(ButtonsListPage),
11+
],
12+
exports: [
13+
ButtonsListPage
14+
]
15+
})
16+
17+
export class ButtonsListPageModule { };
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
import { CardBackgroundPage } from './card-background';
2+
import { NgModule } from '@angular/core';
3+
import { IonicPageModule } from 'ionic-angular';
4+
5+
@NgModule({
6+
declarations: [
7+
CardBackgroundPage,
8+
],
9+
imports: [
10+
IonicPageModule.forChild(CardBackgroundPage),
11+
],
12+
exports: [
13+
CardBackgroundPage
14+
]
15+
})
16+
17+
export class CardBackgroundPageModule { };
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
import { CardBadgePage } from './card-badge';
2+
import { NgModule } from '@angular/core';
3+
import { IonicPageModule } from 'ionic-angular';
4+
5+
@NgModule({
6+
declarations: [
7+
CardBadgePage,
8+
],
9+
imports: [
10+
IonicPageModule.forChild(CardBadgePage),
11+
],
12+
exports: [
13+
CardBadgePage
14+
]
15+
})
16+
17+
export class CardBadgePageModule { };
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
import { CardImagePage } from './card-image';
2+
import { NgModule } from '@angular/core';
3+
import { IonicPageModule } from 'ionic-angular';
4+
5+
@NgModule({
6+
declarations: [
7+
CardImagePage,
8+
],
9+
imports: [
10+
IonicPageModule.forChild(CardImagePage),
11+
],
12+
exports: [
13+
CardImagePage
14+
]
15+
})
16+
17+
export class CardImagePageModule { };
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
import { CardListPage } from './card-list';
2+
import { NgModule } from '@angular/core';
3+
import { IonicPageModule } from 'ionic-angular';
4+
5+
@NgModule({
6+
declarations: [
7+
CardListPage,
8+
],
9+
imports: [
10+
IonicPageModule.forChild(CardListPage),
11+
],
12+
exports: [
13+
CardListPage
14+
]
15+
})
16+
17+
export class CardListPageModule { };
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
import { CardMapPage } from './card-map';
2+
import { NgModule } from '@angular/core';
3+
import { IonicPageModule } from 'ionic-angular';
4+
5+
@NgModule({
6+
declarations: [
7+
CardMapPage,
8+
],
9+
imports: [
10+
IonicPageModule.forChild(CardMapPage),
11+
],
12+
exports: [
13+
CardMapPage
14+
]
15+
})
16+
17+
export class CardMapPageModule { };
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
import { CardSocialPage } from './card-social';
2+
import { NgModule } from '@angular/core';
3+
import { IonicPageModule } from 'ionic-angular';
4+
5+
@NgModule({
6+
declarations: [
7+
CardSocialPage,
8+
],
9+
imports: [
10+
IonicPageModule.forChild(CardSocialPage),
11+
],
12+
exports: [
13+
CardSocialPage
14+
]
15+
})
16+
17+
export class CardSocialPageModule { };

0 commit comments

Comments
 (0)