feat(ui): app shell with nav rail

This commit is contained in:
ginnoir
2026-06-11 21:24:42 -05:00
parent ed9607e9e8
commit ee79872d4d
8 changed files with 432 additions and 48 deletions
+9
View File
@@ -0,0 +1,9 @@
import { ActionPanel } from './ActionPanel';
export function PlayPanel() {
return (
<div className="space-y-6">
<ActionPanel />
</div>
);
}