This commit is contained in:
2026-02-21 15:36:07 +00:00
parent af803236c8
commit 6d97edb6ab
23 changed files with 101 additions and 4223 deletions
@@ -1,6 +1,6 @@
import { useState } from 'react';
import type { LayoutNode } from '@/components/Workspace';
import { WorkspaceLayout } from '@/components/Workspace';
import { WorkspaceView } from '@/components/Workspace';
import { appRegistry } from '../Workspaces/app-registry';
const initialLayout: LayoutNode = {
@@ -30,7 +30,7 @@ export const HomeScreen = () => {
return (
<div className="h-full w-full">
<WorkspaceLayout layout={layout} onLayoutChange={setLayout} registry={appRegistry} />
<WorkspaceView layout={layout} onLayoutChange={setLayout} registry={appRegistry} />
</div>
);
};