Router placeholder

This commit is contained in:
Max Lynch
2015-03-30 18:04:06 -05:00
parent 9fbcc766a5
commit 6863dcf1da

View File

@@ -0,0 +1,13 @@
import {Component, Template, Inject, Parent, NgElement} from 'angular2/angular2'
import {Log} from 'ionic2/util'
/**
* A simple routing system that detects a URL and calls
* a handler.
*/
export class Router {
static open(url) {
Log.log('Router: open from url', url)
}
}