docs: edit and add example for Template Expression Operators section of Template Syntax (#28087)

PR Close #28087
This commit is contained in:
Kapunahele Wong
2019-01-08 15:58:23 -05:00
committed by Andrew Kushnir
parent f41242f18e
commit 6c4d91297e
11 changed files with 277 additions and 84 deletions

View File

@ -0,0 +1,11 @@
import { enableProdMode } from '@angular/core';
import { platformBrowserDynamic } from '@angular/platform-browser-dynamic';
import { AppModule } from './app/app.module';
import { environment } from './environments/environment';
if (environment.production) {
enableProdMode();
}
platformBrowserDynamic().bootstrapModule(AppModule);