| 
									
										
										
										
											2016-08-09 17:38:25 +01:00
										 |  |  | import { NgModule } from '@angular/core'; | 
					
						
							|  |  |  | import { BrowserModule }  from '@angular/platform-browser'; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | import { AppComponent } from './app.component'; | 
					
						
							| 
									
										
										
										
											2016-09-01 02:08:57 +01:00
										 |  |  | import { SomeAbsoluteComponent, SomeRelativeComponent } from './some.component'; | 
					
						
							| 
									
										
										
										
											2016-08-09 17:38:25 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | @NgModule({ | 
					
						
							|  |  |  |   imports: [ | 
					
						
							|  |  |  |     BrowserModule | 
					
						
							|  |  |  |   ], | 
					
						
							|  |  |  |   declarations: [ | 
					
						
							| 
									
										
										
										
											2016-09-01 02:08:57 +01:00
										 |  |  |     AppComponent, | 
					
						
							|  |  |  |     SomeAbsoluteComponent, | 
					
						
							|  |  |  |     SomeRelativeComponent | 
					
						
							| 
									
										
										
										
											2016-08-09 17:38:25 +01:00
										 |  |  |   ], | 
					
						
							|  |  |  |   bootstrap: [ AppComponent ] | 
					
						
							|  |  |  | }) | 
					
						
							|  |  |  | export class AppModule { } |