rename src to ionic

This commit is contained in:
Andrew
2015-04-25 10:59:04 -05:00
parent 4473463909
commit 9039297110
231 changed files with 0 additions and 0 deletions

45
ionic/components/ion.js Normal file
View File

@ -0,0 +1,45 @@
export class Ion {}
// export class IonElement extends Ion {
// constructor() {
// this.children = [];
// }
// addChild(child) {
// }
// removeChild(child) {
// }
// insertChild(index, child) {
// }
// behaviors: Array<Behavior>;
// events: Array<String>;
// }
// class Behavior {
// }
// class IonButton extends IonElement {
// text: String;
// type: String;
// }
// class TabBar extends IonElement {
// tabbuttons: Array<IonTabButton>
// onClickTab() {
// let clickedTab = ev.target;
// }
// }
// class IonTabButton extends IonButton {
// }