feat(test): test moving lib

This commit is contained in:
thomas
2023-10-17 22:54:25 +02:00
parent 1269464c89
commit fc6de28091
20 changed files with 23 additions and 23 deletions

View File

@@ -0,0 +1,7 @@
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)
);