refactor(ui): resolve mobile layout and HMR findings for app shell and nav rail

This commit is contained in:
ginnoir
2026-06-11 21:27:41 -05:00
parent ee79872d4d
commit 232b84299c
7 changed files with 24 additions and 125 deletions
+8
View File
@@ -1,9 +1,17 @@
import { ActionPanel } from './ActionPanel';
import { EventLog } from './EventLog';
import { ResourceBar } from './ResourceBar';
export function PlayPanel() {
return (
<div className="space-y-6">
<div className="block md:hidden">
<ResourceBar />
</div>
<ActionPanel />
<div className="block md:hidden">
<EventLog />
</div>
</div>
);
}