convert exiting to use deprecated name converted to new api text warnings fix plunker text test weak text space text lint order tweak
12 lines
341 B
TypeScript
12 lines
341 B
TypeScript
// #docregion
|
|
import { bootstrap } from '@angular/platform-browser-dynamic';
|
|
import { disableDeprecatedForms, provideForms } from '@angular/forms';
|
|
|
|
import { AppComponent } from './app.component';
|
|
|
|
bootstrap(AppComponent, [
|
|
disableDeprecatedForms(),
|
|
provideForms()
|
|
])
|
|
.catch((err: any) => console.error(err));
|