MCPcopy Create free account
hub / github.com/codeaashu/claude-code / MobileInput

Function MobileInput

web/components/mobile/MobileInput.tsx:17–26  ·  view source on GitHub ↗
({ conversationId, keyboardHeight }: MobileInputProps)

Source from the content-addressed store, hash-verified

15 * breaks on iOS Safari when the keyboard is open).
16 */
17export function MobileInput({ conversationId, keyboardHeight }: MobileInputProps) {
18 return (
19 <div
20 style={{ paddingBottom: keyboardHeight }}
21 className="transition-[padding] duration-100"
22 >
23 <ChatInput conversationId={conversationId} />
24 </div>
25 );
26}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected