From 533609568cb4d8a58f6a80ef3bae8e3fe3fdc2f9 Mon Sep 17 00:00:00 2001 From: Drew Rygh Date: Mon, 14 Dec 2015 08:07:37 -0600 Subject: [PATCH] docs(api/menu): update menu api demo --- demos/menu/index.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/demos/menu/index.ts b/demos/menu/index.ts index 9229b217de..9a5a468f5c 100644 --- a/demos/menu/index.ts +++ b/demos/menu/index.ts @@ -1,11 +1,11 @@ -import {App, IonicApp, IonicView} from 'ionic/ionic'; +import {App, IonicApp, Page} from 'ionic/ionic'; -@IonicView({templateUrl: 'page1.html'}) +@Page({templateUrl: 'page1.html'}) class Page1 {} -@IonicView({templateUrl: 'page2.html'}) +@Page({templateUrl: 'page2.html'}) class Page2 {}