| 
									
										
										
										
											2016-08-09 17:38:25 +01:00
										 |  |  | import { NgModule } from '@angular/core'; | 
					
						
							|  |  |  | import { BrowserModule }  from '@angular/platform-browser'; | 
					
						
							|  |  |  | import { FormsModule } from '@angular/forms'; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | import { AppComponent } from './app.component'; | 
					
						
							|  |  |  | import { BigHeroDetailComponent, HeroDetailComponent } from './hero-detail.component'; | 
					
						
							|  |  |  | import { MyClickDirective, MyClickDirective2 } from './my-click.directive'; | 
					
						
							| 
									
										
										
										
											2016-10-20 10:56:17 -07:00
										 |  |  | import { SizerComponent } from './sizer.component'; | 
					
						
							| 
									
										
										
										
											2016-08-09 17:38:25 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | @NgModule({ | 
					
						
							|  |  |  |   imports: [ | 
					
						
							|  |  |  |     BrowserModule, | 
					
						
							|  |  |  |     FormsModule | 
					
						
							|  |  |  |   ], | 
					
						
							|  |  |  |   declarations: [ | 
					
						
							|  |  |  |     AppComponent, | 
					
						
							|  |  |  |     BigHeroDetailComponent, | 
					
						
							|  |  |  |     HeroDetailComponent, | 
					
						
							|  |  |  |     MyClickDirective, | 
					
						
							| 
									
										
										
										
											2016-10-20 10:56:17 -07:00
										 |  |  |     MyClickDirective2, | 
					
						
							|  |  |  |     SizerComponent | 
					
						
							| 
									
										
										
										
											2016-08-09 17:38:25 +01:00
										 |  |  |   ], | 
					
						
							|  |  |  |   bootstrap: [ AppComponent ] | 
					
						
							|  |  |  | }) | 
					
						
							|  |  |  | export class AppModule { } |