docs(demos): outline list examples

This commit is contained in:
Drew Rygh
2015-10-19 15:20:48 -05:00
parent cde81e910f
commit b6c0a44a06
8 changed files with 114 additions and 5 deletions

View File

@ -1,10 +1,55 @@
import {Page} from 'ionic/ionic';
@Page({
templateUrl: 'lists/lists.html',
templateUrl: 'lists/basic-lists.html',
})
export class ListsPage {
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() {
}
}