MCPcopy Create free account
hub / github.com/sqlchat/sqlchat / ConversationTabProps

Interface ConversationTabProps

src/components/ConversationTabsView.tsx:9–15  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

7import UpdateConversationModal from "./UpdateConversationModal";
8
9interface ConversationTabProps {
10 conversation: Conversation;
11 selected: boolean;
12 onClick: (conversation: Conversation) => void;
13 onEdit: (conversation: Conversation) => void;
14 onDelete: (conversation: Conversation) => void;
15}
16
17const ConversationTab = (props: ConversationTabProps) => {
18 const { conversation, selected, onClick, onEdit, onDelete } = props;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected