feat: challenge 45 Simple Animations

This commit is contained in:
Sven Brodny
2024-02-19 23:39:09 +01:00
parent f52afb49f2
commit 649eb847be
27 changed files with 431 additions and 42 deletions

View File

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