Files
Knots-Front/src/main.ts
2026-04-21 10:31:51 +02:00

10 lines
327 B
TypeScript

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