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

7 lines
157 B
TypeScript

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