UNPKG

@coko/client

Version:

Client side common code for coko apps

8 lines (7 loc) 212 B
import { ReactNode } from 'react'; type ChatInputProps = { className?: string; onSend: (value: string) => void; }; declare const ChatInput: (props: ChatInputProps) => ReactNode; export default ChatInput;