| 
									
										
										
										
											2016-07-12 18:14:13 -07:00
										 |  |  | // #docplaster
 | 
					
						
							|  |  |  | // #docregion
 | 
					
						
							|  |  |  | import { NgModule }           from '@angular/core'; | 
					
						
							|  |  |  | import { BrowserModule }      from '@angular/platform-browser'; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* App Root */ | 
					
						
							|  |  |  | import { AppComponent }       from './app.component.3'; | 
					
						
							|  |  |  | import { HighlightDirective } from './highlight.directive'; | 
					
						
							|  |  |  | import { TitleComponent }     from './title.component'; | 
					
						
							|  |  |  | import { UserService }        from './user.service'; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* Feature Modules */ | 
					
						
							|  |  |  | import { ContactModule }      from './contact/contact.module.3'; | 
					
						
							|  |  |  | import { routing }            from './app.routing.3'; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | @NgModule({ | 
					
						
							|  |  |  | // #docregion imports
 | 
					
						
							|  |  |  |   imports:      [ | 
					
						
							|  |  |  |     BrowserModule, | 
					
						
							|  |  |  |     ContactModule, | 
					
						
							|  |  |  |     routing | 
					
						
							|  |  |  |   ], | 
					
						
							|  |  |  | // #enddocregion imports
 | 
					
						
							|  |  |  |   providers:    [ UserService ], | 
					
						
							| 
									
										
										
										
											2016-08-23 00:17:18 -07:00
										 |  |  |   declarations: [ AppComponent, HighlightDirective, TitleComponent ], | 
					
						
							| 
									
										
										
										
											2016-07-12 18:14:13 -07:00
										 |  |  |   bootstrap:    [ AppComponent ] | 
					
						
							|  |  |  | }) | 
					
						
							|  |  |  | export class AppModule { } |