Most of these were fixed in other PRs but there were are couple of stragglers. Note that `my-app` components in non-documentation facing code, such as compliance tests have not been changed. Fixes #20235 PR Close #42256
		
			
				
	
	
		
			25 lines
		
	
	
		
			656 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			656 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
| /**
 | |
|  * @license
 | |
|  * Copyright Google LLC 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 {Component, NgModule} from '@angular/core';
 | |
| import {BrowserModule} from '@angular/platform-browser';
 | |
| import {platformBrowserDynamic} from '@angular/platform-browser-dynamic';
 | |
| 
 | |
| @Component({selector: 'app-root', template: 'Hello {{ name }}!'})
 | |
| class MyApp {
 | |
|   name: string = 'World';
 | |
| }
 | |
| 
 | |
| @NgModule({imports: [BrowserModule], bootstrap: [MyApp]})
 | |
| class AppModule {
 | |
| }
 | |
| 
 | |
| export function main() {
 | |
|   platformBrowserDynamic().bootstrapModule(AppModule);
 | |
| }
 |