import {Component, View} from 'angular2/angular2';
/**
* Creates a list-item that can easily be swiped,
* deleted, reordered, edited, and more.
*
* @usage
* ```html
*
*
* {{item.title}}
*
* {{item.note}}
*
*
*
* ```
*/
@Component({
selector: 'ion-item,[ion-item]',
host: {
'class': 'item'
}
})
@View({
template:
'' +
'' +
''+
'' +
''
})
export class Item {}