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

Interface Props

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

Source from the content-addressed store, hash-verified

6const examples = ["Give me an example schema about employee", "How to create a view in MySQL?"];
7
8interface Props {
9 className?: string;
10 sendMessage: (content: string) => Promise<void>;
11}
12
13const EmptyView = (props: Props) => {
14 const { className, sendMessage } = props;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected