MCPcopy Create free account
hub / github.com/Railly/tinte / CodeInputProps

Interface CodeInputProps

apps/ray/src/components/code-input.tsx:4–9  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2import { LANGUAGES, type Language } from "@/lib/code-samples";
3
4interface CodeInputProps {
5 code: string;
6 onChange: (code: string) => void;
7 language: string;
8 onLanguageChange: (lang: Language) => void;
9}
10
11export function CodeInput({
12 code,

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected