Files
syscom-master-admin-ui/src/main.ts
T
2026-07-13 11:57:09 +05:30

7 lines
223 B
TypeScript

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