S SmartDocs
Serie: angular typescript 5 líneas · Actualizado 2026-02-03

main.ts

angular/examples/week01-02/src/main.ts

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

bootstrapApplication(AppComponent, appConfig).catch((err) => console.error(err));

Artículos relacionados