| 
									
										
										
										
											2016-08-09 17:38:25 +01:00
										 |  |  | // #docregion
 | 
					
						
							|  |  |  | import { NgModule } from '@angular/core'; | 
					
						
							|  |  |  | import { BrowserModule } from '@angular/platform-browser'; | 
					
						
							|  |  |  | import { FormsModule } from '@angular/forms'; | 
					
						
							|  |  |  | import { HttpModule, JsonpModule } from '@angular/http'; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | import { AppComponent } from './app.component'; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | @NgModule({ | 
					
						
							|  |  |  |   imports: [ | 
					
						
							|  |  |  |     BrowserModule, | 
					
						
							|  |  |  |     FormsModule, | 
					
						
							|  |  |  |     HttpModule, | 
					
						
							|  |  |  |     JsonpModule | 
					
						
							|  |  |  |   ], | 
					
						
							|  |  |  |   declarations: [ AppComponent ], | 
					
						
							| 
									
										
										
										
											2016-08-19 04:23:55 -07:00
										 |  |  |   bootstrap:    [ AppComponent ] | 
					
						
							| 
									
										
										
										
											2016-08-09 17:38:25 +01:00
										 |  |  | }) | 
					
						
							|  |  |  | export class AppModule { } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 |