Files
itc.webengineering/demo/src/app/app.html

20 lines
511 B
HTML
Raw Normal View History

2025-12-06 11:51:10 +01:00
<style></style>
2025-12-06 11:38:19 +01:00
<main class="main">
<div class="content">
2025-12-06 11:51:10 +01:00
<div class="uebung-6">
<app-create-auto (autoInitializedEvent)="setAuto($event)"></app-create-auto>
<div> Typ: {{ auto?.typ ?? "N/A" }} </div>
<div> Hersteller: {{ auto?.hersteller ?? "N/A" }} </div>
<div> Kennzeichen: {{ auto?.kennzeichen ?? "N/A" }} </div>
2025-12-06 11:38:19 +01:00
</div>
2025-12-06 11:51:10 +01:00
<div class="praktikum-6">
<app-display-html html="<b>initialer text</b>"></app-display-html>
2025-12-06 11:38:19 +01:00
</div>
2025-12-06 11:51:10 +01:00
2025-12-06 11:38:19 +01:00
</div>
</main>
<router-outlet />