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,11 @@
import { Component } from '@angular/core';
@Component({
selector: 'app-player-shell',
standalone: true,
template: `
<h2>Player route placeholder</h2>
<p>Player flow flyttes hertil i kommende SPA-issues.</p>
`,
})
export class PlayerShellComponent {}