Files
psp_panel/src/main.ts
T
2025-01-07 12:16:16 +03:00

8 lines
243 B
TypeScript

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