1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
| import { Component } from '@angular/core';
| import { IonicPage } from 'ionic-angular';
|
| /**
| * Generated class for the InputComponent component.
| *
| * See https://angular.io/docs/ts/latest/api/core/index/ComponentMetadata-class.html
| * for more info on Angular Components.
| */
|
|
| @IonicPage({
| name: 'access-input'
| })
| @Component({
| selector: 'page-input',
| templateUrl: 'input.html',
| })
| export class InputPage {
|
| text: string;
|
| constructor() {}
|
| }
|
|