import {NgFor, DynamicComponentLoader, Injector, DomRenderer, ElementRef} from 'angular2/angular2'; import {Ancestor} from 'angular2/src/core/annotations_impl/visibility'; import {Component, Directive} from 'angular2/src/core/annotations_impl/annotations'; import {View} from 'angular2/src/core/annotations_impl/view'; import {List, Item, ActionMenu, Modal, ModalRef, NavbarTemplate, Navbar, NavController, Content} from 'ionic/ionic'; @Component({ selector: 'ion-view' }) @View({ template: ` Asides

Aside

Asides, also known as side menus or "hamburger" menus, are menus that slide or swipe in to show menus or information.

Try it! Just swipe from the left edge of the screen to the right to expose the app menu.

`, directives: [NavbarTemplate, Navbar, Content, List, Item] }) export class AsidePage { constructor() { } openMenu() { } }