20 lines
		
	
	
		
			351 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			351 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
// #docregion
 | 
						|
import { NgModule } from '@angular/core';
 | 
						|
import { BrowserModule, Title }  from '@angular/platform-browser';
 | 
						|
 | 
						|
import { AppComponent } from './app.component';
 | 
						|
 | 
						|
@NgModule({
 | 
						|
  imports: [
 | 
						|
    BrowserModule
 | 
						|
  ],
 | 
						|
  declarations: [
 | 
						|
    AppComponent
 | 
						|
  ],
 | 
						|
  providers: [
 | 
						|
    Title
 | 
						|
  ],
 | 
						|
  bootstrap: [ AppComponent ]
 | 
						|
})
 | 
						|
export class AppModule { }
 |