feat(renderer): AppShell with resizable panes, sidebar/preview toggle, persisted sizes

This commit is contained in:
2026-06-05 12:02:35 +05:30
parent 1999a7716e
commit 567726022c
4 changed files with 116 additions and 8 deletions
+6
View File
@@ -27,3 +27,9 @@ if (typeof window !== 'undefined') {
}),
});
}
// Mock react-resizable-panels for jsdom environment
if (typeof window !== 'undefined') {
Object.defineProperty(window, 'innerWidth', { writable: true, value: 1920 });
Object.defineProperty(window, 'innerHeight', { writable: true, value: 1080 });
}