Files
2015-10-19 15:20:48 -05:00

55 lines
719 B
TypeScript

import {Page} from 'ionic/ionic';
@Page({
templateUrl: 'lists/basic-lists.html',
})
export class BasicListsPage {
constructor() {
}
}
@Page({
templateUrl: 'lists/inset-lists.html',
})
export class InsetListsPage {
constructor() {
}
}
@Page({
templateUrl: 'lists/no-dividers.html',
})
export class NoDividersPage {
constructor() {
}
}
@Page({
templateUrl: 'lists/list-headers.html',
})
export class ListHeadersPage {
constructor() {
}
}
@Page({
templateUrl: 'lists/icon-lists.html',
})
export class IconListsPage {
constructor() {
}
}
@Page({
templateUrl: 'lists/avatar-lists.html',
})
export class AvatarListsPage {
constructor() {
}
}