David Prince
fix: add all missing local module stubs (remote_mcp_registry, mcp_auth, mcp_transport, etc)
cce8120
Raw
History Blame Contribute Delete
317 Bytes
"use client";
export default function DatabaseWorkspace(){
return(
<div className="w-full h-full flex flex-col bg-zinc-950 text-white">
<div className="border-b border-zinc-800 p-3 text-lg font-semibold">
Database Workspace
</div>
<div className="flex-1 overflow-auto p-4">
Database Explorer
</div>
</div>
);
}