WorkspaceLayout in officerdev workspace

This commit is contained in:
2026-02-22 22:43:28 +00:00
parent 09cff3f763
commit ed0debfeac
51 changed files with 76 additions and 69 deletions
@@ -1,4 +1,4 @@
import type { LayoutNode } from '@/components/Workspace';
import type { LayoutNode } from 'officerdev';
export const defaultLayout: LayoutNode = {
type: 'group',
@@ -1,11 +1,10 @@
import { useEffect } from 'react';
import { useParams } from 'react-router';
import { WorkspaceView } from '@/components/Workspace';
import type { LayoutNode } from '@/components/Workspace';
import type { LayoutNode, SelectedSession } from 'officerdev';
import { WorkspaceView } from 'officerdev';
import { useWorkspacesState } from 'state/useWorkspacesState';
import { usePanelChannel } from 'hooks/usePanelChannel';
import { useChatSessions } from 'state/useChatSessions';
import type { SelectedSession } from 'officerdev';
import { defaultLayout } from './defaultLayout';
export { ChatHistory as ChatHistoryApp } from './Widget';