refactor(demos): make each button section a module

This commit is contained in:
Drew Rygh
2015-11-04 16:05:13 -06:00
parent 9df5b5982f
commit d5d05a267f
22 changed files with 152 additions and 124 deletions

View File

@ -0,0 +1,13 @@
import {Page} from 'ionic/ionic';
import {forwardRef} from 'angular2/angular2';
import {AndroidAttribute} from '../../helpers';
@Page({
templateUrl: 'buttons/sizes.html',
directives: [forwardRef(() => AndroidAttribute)]
})
export class SizesPage {
constructor() {
}
}