casino/frontend/src/main.ts

6 lines
247 B
TypeScript
Raw Normal View History

2024-09-11 10:40:00 +02:00
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));