Skip to main content
Glama
Southclaws

Storyden

by Southclaws
ReplyToButton.tsx638 B
import { Reply, Thread } from "@/api/openapi-schema"; import { IconButton } from "@/components/ui/icon-button"; import { ReplyIcon } from "@/components/ui/icons/Reply"; import { useReplyContext } from "../ReplyContext"; type Props = { thread: Thread; reply: Reply; }; export function ReplyToButton(props: Props) { const { setReplyTo } = useReplyContext(); function handleClick() { setReplyTo(props.thread, props.reply); } return ( <IconButton type="button" size="xs" variant="ghost" aria-label="Reply to this" onClick={handleClick} > <ReplyIcon /> </IconButton> ); }

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/Southclaws/storyden'

If you have feedback or need assistance with the MCP directory API, please join our Discord server