| 
									
										
										
										
											2016-10-23 22:37:15 +02:00
										 |  |  | /** | 
					
						
							|  |  |  |  * @license | 
					
						
							|  |  |  |  * Copyright Google Inc. All Rights Reserved. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Use of this source code is governed by an MIT-style license that can be | 
					
						
							|  |  |  |  * found in the LICENSE file at https://angular.io/license
 | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-08-16 11:15:01 -07:00
										 |  |  | import {Component, NgModule} from '@angular/core'; | 
					
						
							|  |  |  | import {platformBrowserDynamic} from '@angular/platform-browser-dynamic'; | 
					
						
							|  |  |  | import {BrowserModule} from '@angular/platform-browser'; | 
					
						
							| 
									
										
										
										
											2016-01-20 17:56:00 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | @Component({ | 
					
						
							|  |  |  |   selector: 'hello-app', | 
					
						
							|  |  |  |   template: `
 | 
					
						
							|  |  |  |     <h1>Hello, {{name}}!</h1> | 
					
						
							|  |  |  |     <label> Say hello to: <input [value]="name" (input)="name = $event.target.value"></label> | 
					
						
							|  |  |  | `
 | 
					
						
							|  |  |  | }) | 
					
						
							|  |  |  | class HelloCmp { | 
					
						
							|  |  |  |   name = 'World'; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-08-16 11:15:01 -07:00
										 |  |  | @NgModule({ | 
					
						
							|  |  |  |   bootstrap: [HelloCmp], | 
					
						
							|  |  |  |   imports: [BrowserModule] | 
					
						
							|  |  |  | }) | 
					
						
							|  |  |  | class ExampleModule {} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | platformBrowserDynamic().bootstrapModule(ExampleModule); |