6 |
7 |
Enterprise
8 |
The same framework you know and love, with direct access to the Ionic team, priority hotfixes, support SLAs and more!
9 |
10 | `
11 | })
12 | export class PageThree {
13 |
14 | constructor() {
15 | }
16 | }
17 |
--------------------------------------------------------------------------------
/app/pages/content-two.ts:
--------------------------------------------------------------------------------
1 | import {Component} from '@angular/core';
2 |
3 | @Component({
4 | template: `
5 |
6 |
7 |
Cloud
8 |
The Ionic Cloud is a suite of backend services that make building, deploying and scaling apps easy! Free to get started!
9 |
10 | `
11 | })
12 | export class PageTwo {
13 |
14 | constructor() {
15 | }
16 | }
17 |
--------------------------------------------------------------------------------
/app/pages/landing.ts:
--------------------------------------------------------------------------------
1 | import {Component, ViewChild} from '@angular/core';
2 |
3 | import {BodyContent} from './body-content';
4 | import {AnimationReadyEvent, PagingComponent, PageObject} from './paging-component';
5 |
6 | @Component({
7 | directives: [BodyContent, PagingComponent],
8 | template: `
9 |