mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-19 03:32:21 +08:00
11 lines
147 B
TypeScript
11 lines
147 B
TypeScript
import {App, IonicApp, Http} from 'ionic/ionic';
|
|
|
|
|
|
@App({
|
|
templateUrl: 'main.html'
|
|
})
|
|
class MyApp {
|
|
constructor(private app: IonicApp) {
|
|
}
|
|
}
|