mirror of
https://github.com/shishantbiswas/bknd.git
synced 2026-03-17 21:06:04 +00:00
added mcp ui as tool
This commit is contained in:
16
app/src/ui/routes/tools/index.tsx
Normal file
16
app/src/ui/routes/tools/index.tsx
Normal file
@@ -0,0 +1,16 @@
|
||||
import { Empty } from "ui/components/display/Empty";
|
||||
import { Route } from "wouter";
|
||||
import ToolsMcp from "./mcp/mcp";
|
||||
|
||||
export default function ToolsRoutes() {
|
||||
return (
|
||||
<>
|
||||
<Route path="/" component={ToolsIndex} />
|
||||
<Route path="/mcp" component={ToolsMcp} />
|
||||
</>
|
||||
);
|
||||
}
|
||||
|
||||
function ToolsIndex() {
|
||||
return <Empty title="Tools" description="Select a tool to continue." />;
|
||||
}
|
||||
Reference in New Issue
Block a user