angular-cn/public/docs/_examples/homepage-hello-world/ts/app/main.ts

7 lines
165 B
TypeScript

// #docregion
import { bootstrap } from '@angular/platform-browser-dynamic';
import { HelloWorldComponent } from './hello_world';
bootstrap(HelloWorldComponent);