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

Interface Props

src/components/CodeBlock.tsx:11–16  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

9import { Id } from "@/types";
10
11interface Props {
12 language: string;
13 value: string;
14 messageId: Id;
15 wrapLongLines?: boolean;
16}
17
18export const CodeBlock = (props: Props) => {
19 const { language, value, messageId, wrapLongLines } = props;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected