MireaFrontend/src/main.ts

7 lines
244 B
TypeScript
Raw Normal View History

2024-12-18 06:57:27 +03:00
import {bootstrapApplication} from '@angular/platform-browser';
import {appConfig} from './app/app.config';
import {AppComponent} from './app/app.component';
2024-02-05 06:29:18 +03:00
bootstrapApplication(AppComponent, appConfig)
.catch((err) => console.error(err));