feat(spa): scaffold Angular app shell with host/player routes

This commit is contained in:
2026-03-01 11:06:33 +00:00
parent 37b86d7065
commit 7180cc9b0d
16 changed files with 7383 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
<main class="shell">
<header class="shell__header">
<h1>WPP Angular Shell</h1>
<nav>
<a routerLink="/host">Host</a>
<a routerLink="/player">Player</a>
</nav>
</header>
<section class="shell__content">
<router-outlet></router-outlet>
</section>
</main>