import {IonicApp, IonicView} from 'ionic/ionic';
import {SinkPage} from '../sink-page';
@IonicView({
template: `
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:
Menu
` }) export class MenuPage extends SinkPage { constructor(app: IonicApp) { super(app); } openMenu() { } }