| 
									
										
										
										
											2016-07-12 18:14:13 -07:00
										 |  |  | // #docplaster
 | 
					
						
							|  |  |  | // #docregion
 | 
					
						
							| 
									
										
										
										
											2016-08-23 00:17:18 -07:00
										 |  |  | // #docregion v4
 | 
					
						
							| 
									
										
										
										
											2016-07-12 18:14:13 -07:00
										 |  |  | import { NgModule }       from '@angular/core'; | 
					
						
							|  |  |  | import { BrowserModule }  from '@angular/platform-browser'; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* App Root */ | 
					
						
							|  |  |  | import { AppComponent }   from './app.component'; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* Feature Modules */ | 
					
						
							|  |  |  | import { ContactModule }  from './contact/contact.module'; | 
					
						
							| 
									
										
										
										
											2016-08-23 00:17:18 -07:00
										 |  |  | import { CoreModule }     from './core/core.module'; | 
					
						
							| 
									
										
										
										
											2016-07-12 18:14:13 -07:00
										 |  |  | import { routing }        from './app.routing'; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | @NgModule({ | 
					
						
							| 
									
										
										
										
											2016-08-23 00:17:18 -07:00
										 |  |  |   // #docregion import-for-root
 | 
					
						
							| 
									
										
										
										
											2016-07-12 18:14:13 -07:00
										 |  |  |   imports: [ | 
					
						
							|  |  |  |     BrowserModule, | 
					
						
							|  |  |  |     ContactModule, | 
					
						
							| 
									
										
										
										
											2016-08-23 00:17:18 -07:00
										 |  |  | // #enddocregion v4
 | 
					
						
							|  |  |  | // #enddocregion
 | 
					
						
							|  |  |  | // #enddocregion import-for-root
 | 
					
						
							|  |  |  | /* | 
					
						
							|  |  |  | // #docregion v4
 | 
					
						
							|  |  |  |     CoreModule, | 
					
						
							|  |  |  | // #enddocregion v4
 | 
					
						
							|  |  |  | */ | 
					
						
							|  |  |  | // #docregion import-for-root
 | 
					
						
							|  |  |  | // #docregion
 | 
					
						
							|  |  |  |     CoreModule.forRoot({userName: 'Miss Marple'}), | 
					
						
							|  |  |  | // #docregion v4
 | 
					
						
							|  |  |  |     routing | 
					
						
							| 
									
										
										
										
											2016-07-12 18:14:13 -07:00
										 |  |  |   ], | 
					
						
							| 
									
										
										
										
											2016-08-23 00:17:18 -07:00
										 |  |  |   // #enddocregion import-for-root
 | 
					
						
							| 
									
										
										
										
											2016-07-12 18:14:13 -07:00
										 |  |  |   declarations: [ AppComponent ], | 
					
						
							|  |  |  |   bootstrap:    [ AppComponent ] | 
					
						
							|  |  |  | }) | 
					
						
							|  |  |  | export class AppModule { } | 
					
						
							| 
									
										
										
										
											2016-08-23 00:17:18 -07:00
										 |  |  | // #enddocregion v4
 | 
					
						
							|  |  |  | // #enddocregion
 |