docs(bootstrap): update usage example

This commit is contained in:
mhartington
2016-06-08 17:03:31 -04:00
parent e9f09688a9
commit e03bb31cfb

View File

@ -31,12 +31,15 @@ const _reflect: any = Reflect;
* app as an array for the second argument. You can also pass a config object as the third argument to configure your app's settings. * app as an array for the second argument. You can also pass a config object as the third argument to configure your app's settings.
* *
* @usage * @usage
*
* ```ts
* import {ionicBootstrap} from 'ionic-angular'; * import {ionicBootstrap} from 'ionic-angular';
* import {Component} from '@angular/core'; * import {Component} from '@angular/core';
* *
* @Component({ * @Component({
* templateUrl: 'build/app.html', * templateUrl: 'build/app.html',
* }) * })
* ```
* *
* export class MyClass{} * export class MyClass{}
* *