| 
									
										
										
										
											2016-09-09 18:40:18 -07:00
										 |  |  | /** | 
					
						
							|  |  |  |  * @license | 
					
						
							|  |  |  |  * Copyright Google Inc. All Rights Reserved. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Use of this source code is governed by an MIT-style license that can be | 
					
						
							|  |  |  |  * found in the LICENSE file at https://angular.io/license
 | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | import {NgModule} from '@angular/core'; | 
					
						
							|  |  |  | import {ReactiveFormsModule} from '@angular/forms'; | 
					
						
							|  |  |  | import {BrowserModule} from '@angular/platform-browser'; | 
					
						
							| 
									
										
										
										
											2016-09-11 12:43:43 -07:00
										 |  |  | import {SimpleFormGroup} from './simple_form_group_example'; | 
					
						
							| 
									
										
										
										
											2016-09-09 18:40:18 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | @NgModule({ | 
					
						
							|  |  |  |   imports: [BrowserModule, ReactiveFormsModule], | 
					
						
							| 
									
										
										
										
											2016-09-11 12:43:43 -07:00
										 |  |  |   declarations: [SimpleFormGroup], | 
					
						
							|  |  |  |   bootstrap: [SimpleFormGroup] | 
					
						
							| 
									
										
										
										
											2016-09-09 18:40:18 -07:00
										 |  |  | }) | 
					
						
							|  |  |  | export class AppModule { | 
					
						
							|  |  |  | } |