stock-bot/apps/dashboard/src/main.ts
2025-06-09 22:55:51 -04:00

6 lines
228 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));