10 lines
		
	
	
		
			232 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			232 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
| // #docregion
 | |
| import { bootstrap }    from '@angular/platform-browser-dynamic';
 | |
| 
 | |
| import { AppComponent } from './app.component';
 | |
| import { appRouterProviders } from './app.routes';
 | |
| 
 | |
| bootstrap(AppComponent, [
 | |
|   appRouterProviders
 | |
| ]);
 |