@ieltsrealtest/ui
Version:
Reusable UI components for IELTS Real Test platform, built with React and TypeScript.
14 lines (13 loc) • 413 B
TypeScript
type CommentInputVariant = 'main' | 'reply';
type Props = {
userId: string;
threadId?: string;
parentId?: string;
onSuccess: () => void;
page?: string;
name?: string;
variant?: CommentInputVariant;
isDev?: Boolean;
};
export default function CommentInput({ userId, threadId, parentId, onSuccess, page, variant, isDev, }: Props): import("react/jsx-runtime").JSX.Element;
export {};