import {IonicApp, IonicView} from 'ionic/ionic'; import {SinkPage} from '../sink-page'; @IonicView({ template: ` Menu

Menu

Menus slide or swipe in to show more information.

Try it! Just swipe from the left edge of the screen to the right to expose the app menu, or tap the button to toggle the menu:

` }) export class MenuPage extends SinkPage { constructor(app: IonicApp) { super(app); } openMenu() { } }