Files
angular-challenges/apps/forms/control-value-accessor/src/main.ts
2023-12-08 16:46:41 +03:00

5 lines
190 B
TypeScript

import { bootstrapApplication } from '@angular/platform-browser';
import { AppComponent } from './app/app.component';
bootstrapApplication(AppComponent).catch((err) => console.error(err));