import {IonicApp, IonicView} from 'ionic/ionic'; import {SinkPage} from '../sink-page'; @IonicView({ template: ` Lists

Lists

Lists display data as rows in a table.

Lists are great for displaying sets of things like contacts, songs, and documents.

List Header Item Item
` }) export class ListPage extends SinkPage { constructor(app: IonicApp) { super(app) } }