Just going through the 2.0 Tutorial (super excited so far) and wanted clarify something. The docs reference importing “IonicView” but the tutorial starter app seems to import “Page”.
app/list/list.js (from docs):
import {IonicApp, IonicView, NavController, NavParams} from ‘ionic/ionic’;
app/list/list.js (from tutorial starter app code):
import {IonicApp, Page, NavController, NavParams} from ‘ionic/ionic’;
Is this the same thing with different names, or is IonicView a derivative of Page?
Thanks!
Brian
UPDATE: Looks like the docs were updated and IonicView was replaced with Page, matching the starter code