refactor(demos): give each component section its own view

This commit is contained in:
Drew Rygh
2015-10-08 10:01:13 -05:00
parent c3eed60d22
commit dcebbeaf56
40 changed files with 985 additions and 276 deletions

View File

@ -0,0 +1,73 @@
import {IonicPlatform, IonicView} from 'ionic/ionic';
@IonicView({
templateUrl: 'buttons/buttons.html',
})
export class ButtonsPage {
constructor() {
}
}
@IonicView({
templateUrl: 'buttons/block.html',
})
export class BlockButtonsPage {
constructor() {
}
}
@IonicView({
templateUrl: 'buttons/full.html',
})
export class FullButtonsPage {
constructor() {
}
}
@IonicView({
templateUrl: 'buttons/outline.html',
})
export class OutlineButtonsPage {
constructor() {
}
}
@IonicView({
templateUrl: 'buttons/round.html',
})
export class RoundButtonsPage {
constructor() {
}
}
@IonicView({
templateUrl: 'buttons/fab.html',
})
export class FabPage {
constructor() {
}
}
@IonicView({
templateUrl: 'buttons/sizes.html',
})
export class ButtonSizesPage {
constructor() {
}
}
@IonicView({
templateUrl: 'buttons/icons.html',
})
export class IconButtonsPage {
constructor() {
}
}