UNPKG

@ieltsrealtest/ui

Version:

Reusable UI components for IELTS Real Test platform, built with React and TypeScript.

10 lines (9 loc) 277 B
type Props = { userId: string; threadId?: string; parentId?: string; onSuccess: () => void; name?: string; }; export default function CommentInput({ userId, threadId, parentId, onSuccess, name, }: Props): import("react/jsx-runtime").JSX.Element; export {};