From e03bb31cfbed4ddab71349a620883ba8b0a98fbb Mon Sep 17 00:00:00 2001 From: mhartington Date: Wed, 8 Jun 2016 17:03:31 -0400 Subject: [PATCH] docs(bootstrap): update usage example --- src/config/bootstrap.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/config/bootstrap.ts b/src/config/bootstrap.ts index ef12f4873a..54eb27f3a1 100644 --- a/src/config/bootstrap.ts +++ b/src/config/bootstrap.ts @@ -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. * * @usage + * + * ```ts * import {ionicBootstrap} from 'ionic-angular'; * import {Component} from '@angular/core'; * * @Component({ * templateUrl: 'build/app.html', * }) + * ``` * * export class MyClass{} *