angular/aio/content/examples/forms-overview/src/main.ts
2023-09-12 12:22:46 -07:00

5 lines
208 B
TypeScript
Executable file

import { bootstrapApplication } from '@angular/platform-browser';
import { AppComponent } from './app/app.component';
import appConfig from './app/app.config';
bootstrapApplication(AppComponent, appConfig);