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

Interface Props

src/components/ConversationView/MessageTextarea.tsx:8–11  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

6import Icon from "../Icon";
7
8interface Props {
9 disabled?: boolean;
10 sendMessage: (content: string) => Promise<void>;
11}
12
13const MessageTextarea = (props: Props) => {
14 const { disabled, sendMessage } = props;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected