mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-22 21:48:42 +08:00
13 lines
269 B
TypeScript
13 lines
269 B
TypeScript
import {Component, ViewEncapsulation} from '@angular/core';
|
|
import {ionicBootstrap} from 'ionic-angular';
|
|
|
|
|
|
@Component({
|
|
templateUrl: 'main.html',
|
|
styleUrls: ['style.css'],
|
|
encapsulation: ViewEncapsulation.None
|
|
})
|
|
class ApiDemoApp {}
|
|
|
|
ionicBootstrap(ApiDemoApp);
|