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

View File

@ -0,0 +1,17 @@
import {NgElement, Decorator} from 'angular2/angular2'
import {IonicComponent} from 'ionic2/config/component'
@Decorator({
selector: 'ion-input'
})
export class Input {
constructor(
@NgElement() ngElement:NgElement
) {
this.domElement = ngElement.domElement
//this.config = Button.config.invoke(this)
console.log('INPUT');
}
}
new IonicComponent(Input, {
})