Files
Brandy Carney 4e375242c6 fix(select): make select full width when with a stacked/floating label
if it is with a floating label, the label will stay stacked instead of
floating

closes #5715
2016-03-09 16:21:35 -05:00

15 lines
200 B
TypeScript

import {App, Page} from 'ionic-angular';
@App({
template: '<ion-nav [root]="rootPage"></ion-nav>'
})
class E2EApp {
rootPage = PageOne;
}
@Page({
templateUrl: 'main.html'
})
class PageOne {}