init client

This commit is contained in:
Ashwin Bhat
2024-10-07 16:28:05 -07:00
parent 70a9f96712
commit 3cdd6faed7
33 changed files with 3256 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
import { TabsContent } from "@/components/ui/tabs";
const ConsoleTab = () => (
<TabsContent value="console" className="h-96">
<div className="bg-gray-900 text-gray-100 p-4 rounded-lg h-full font-mono text-sm overflow-auto">
<div className="opacity-50">Welcome to MCP Client Console</div>
{/* Console output would go here */}
</div>
</TabsContent>
);
export default ConsoleTab;