| 
									
										
										
										
											2016-08-26 23:19:27 -05:00
										 |  |  | // #docplaster
 | 
					
						
							|  |  |  | // #docregion
 | 
					
						
							|  |  |  | import { NgModule }       from '@angular/core'; | 
					
						
							|  |  |  | import { CommonModule }   from '@angular/common'; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | import { AdminComponent }           from './admin.component'; | 
					
						
							|  |  |  | import { AdminDashboardComponent }  from './admin-dashboard.component'; | 
					
						
							|  |  |  | import { ManageCrisesComponent }    from './manage-crises.component'; | 
					
						
							|  |  |  | import { ManageHeroesComponent }    from './manage-heroes.component'; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-10-05 16:59:09 -05:00
										 |  |  | import { AdminRoutingModule }       from './admin-routing.module'; | 
					
						
							| 
									
										
										
										
											2016-08-26 23:19:27 -05:00
										 |  |  | 
 | 
					
						
							|  |  |  | @NgModule({ | 
					
						
							|  |  |  |   imports: [ | 
					
						
							|  |  |  |     CommonModule, | 
					
						
							| 
									
										
										
										
											2016-10-05 16:59:09 -05:00
										 |  |  |     AdminRoutingModule | 
					
						
							| 
									
										
										
										
											2016-08-26 23:19:27 -05:00
										 |  |  |   ], | 
					
						
							|  |  |  |   declarations: [ | 
					
						
							|  |  |  |     AdminComponent, | 
					
						
							|  |  |  |     AdminDashboardComponent, | 
					
						
							|  |  |  |     ManageCrisesComponent, | 
					
						
							|  |  |  |     ManageHeroesComponent | 
					
						
							|  |  |  |   ] | 
					
						
							|  |  |  | }) | 
					
						
							|  |  |  | // #docregion admin-module-export
 | 
					
						
							|  |  |  | export class AdminModule {} | 
					
						
							|  |  |  | // #enddocregion admin-module-export
 | 
					
						
							|  |  |  | // #enddocregion
 |